	//to get the current date
	var today = new Date();
	var hours = today.getHours();
	var minutes = today.getMinutes();
	var seconds = today.getSeconds();
	var timeValue = "<FONT COLOR=white>" + ((hours >12) ? hours -12 :hours); timeValue += ((minutes < 10) ? "<BLINK><FONT COLOR=white>:</FONT></BLINK>0" : "<BLINK><FONT COLOR=white>:</FONT></BLINK>") + minutes+"</FONT></FONT>";
	timeValue += (hours >= 12) ? "<FONT COLOR=white>pm</FONT>" : "<FONT COLOR=white>am</FONT>";

	function initArray(){
	 	this.length=initArray.arguments.length
		for(var i=0;i<this.length;i++)
			this[i+1]=initArray.arguments[i]
	}
	
	var d=new initArray("<font color=RED>Sunday","<font color=white>Monday","<font color=white>Tuesday","<font color=white>Wednesday","<font color=white>Thursday","<font color=white>Friday","<font color=white>Saturday");

	document.write(d[today.getDay()+1]," ","<font color=white>",today.getMonth()+1,"/","<font color=white>",today.getDate(),"/",today.getYear()," </FONT>",timeValue);
	
