today=new Date();
	var hours = today.getHours();
	var minutes = today.getMinutes();
	var seconds = today.getSeconds();
	var timeValue = (hours >= 12) ? "p.m." : "a.m.";
	timeValue += ((hours >12) ? hours -12 :hours); 
	timeValue += ((minutes < 10) ? "<BLINK>:</BLINK>0" : "<BLINK>:</BLINK>") + minutes;
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(" Sunday"," Monday"," Tuesday"," Wednesday"," Thursday"," Friday"," Saturday"); 
	document.write("<font color=#003300>",today.getDate(),"/","",today.getMonth()+1,"/","",today.getYear()," ",d[today.getDay()+1]," "," ",timeValue,"</FONT>");