// Thanks to Bernhard Wagner for submitting this function

function y2k4Date(sText) {
//	sText = sText.replace(/12:/, "00:");
//Sat&nbsp;27th,&nbsp;05:30&nbsp;PM
//012345678901234567890123456789012
//0         1         2         3
	var sText2 = sText.substring(sText, 9, 25);
	return sText2;
}

SortableTable.prototype.addSortType( "y2k4Date", y2k4Date );

