<!--
var today=new Date();

var weekday=new Array(7);
weekday[0]="Sun";
weekday[1]="Mon";
weekday[2]="Tue";
weekday[3]="Wed";
weekday[4]="Thu";
weekday[5]="Fri";
weekday[6]="Sat";

var no=today.getDate();

	var th=""

	if(no==1) {
		th="st";
	}
	else if(no==2) {
		th="nd";
	}
	else if(no==3) {
		th="rd";
	}
	else if(no<=20) {
		th="th";
	}
	else if(no==21) {
		th="st";
	}
	else if(no==22) {
		th="nd";
	}
	else if(no==23) { 
		th="rd";
	}
	else if(no<=30) {
		th="th";
	}
	else if(no==31) {
		th="st";
	}


var month=new Array(12);
month[0]="Jan";
month[1]="Feb";
month[2]="Mar";
month[3]="Apr";
month[4]="May";
month[5]="Jun";
month[6]="Jul";
month[7]="Aug";
month[8]="Sep";
month[9]="Oct";
month[10]="Nov";
month[11]="Dec";

var year=today.getFullYear();		

//var m=today.getMinutes();

//var s=today.getSeconds();

// add a zero in front of numbers<10
//h=checkTime(h);
//m=checkTime(m);
//s=checkTime(s);

document.write("<b class='clock'>"+weekday[today.getDay()]+", "+no+""+th+" "+month[today.getMonth()]+" "+year+"</b>");

// -->
