

function formatNewsDate(strDate)
{
	// strDate accepts - the date in "10-Dec-2008" format
	
	return strDate.substr(3, 3) + '<span>' + strDate.substr(0, 2) + '</span>';
	
}