function displayTime(div){
	var today = new Date();
	var table_day = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
	var table_month = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
	var ampm = "am";
	
	var text_day = "";
	var text_date = "";
	var text_month = "";
	var text_year = today.getFullYear();
	var text_hour = "";
	var text_minutes = "";
	
	text_day = table_day[today.getDay()];
	
	//if(today.getDate()<10){
	//	text_date = "0";
	//}
	text_date += today.getDate();
	
	text_month = table_month[today.getMonth()]
	
	if(today.getHours()>12){
		ampm = "pm";
		/*if((today.getHours() -12)<10){
			text_hour = "0";
		}*/
		text_hour += today.getHours() -12;
	}
	else{
		/*if(today.getHours()<10){
			text_hour = "0";
		}*/
		text_hour += today.getHours();
	}
	
	if(today.getMinutes()<10){
		text_minutes = "0";
	}
	text_minutes += today.getMinutes();
	
	text_date = text_day + " " + text_date + " " + text_month + " " + text_year + " " + text_hour + ":" + text_minutes + " " + ampm;
	document.getElementById(div).innerHTML = text_date;
	setTimeout("displayTime('" + div + "')",1000);
}