
function startclock()
{
	var curTime=new Date();
	var nhours=curTime.getHours();
	var nmins=curTime.getMinutes();
	var nsecn=curTime.getSeconds();
	var nday=curTime.getDay();
	var nmonth=curTime.getMonth();
	var ntoday=curTime.getDate();
	var nyear=curTime.getYear();
	var AMorPM=" ";
	if(nhours>=12)
		AMorPM="PM";
	else
		AMorPM="AM";
	if(nhours>=13)
		nhours-=12;
	if(nhours==0)
		nhours=12;
	if(nsecn<10)
		nsecn="0"+nsecn;
	if(nmins<10)
		nmins="0"+nmins;
	if(nday==0)
		nday="Ch&#7911; Nh&#7853;t";
	if(nday==1)
		nday="Th&#7913; Hai";
	if(nday==2)
		nday="Th&#7913; Ba";
	if(nday==3)
		nday="Th&#7913; T&#432;";
	if(nday==4)
		nday="Th&#7913; N&#259;m";
	if(nday==5)
		nday="Th&#7913; S&#225;u";
	if(nday==6)
		nday="Th&#7913; B&#7843;y";nmonth+=1;
	if(nyear<=99)
		nyear="19"+nyear;
	if((nyear>99)&&(nyear<2000))
		nyear+=1900;
	var d;
	d=document.getElementById("theClock");
	d.innerHTML=nday+", Ngày "+ntoday+" tháng "+nmonth+" năm "+nyear+" <span>"+nhours+":"+nmins+":"+nsecn+" "+AMorPM+"</span>";
	setTimeout('startclock()',1000);
}

function gotoUrl(str){window.location.href=str;}

google.setOnLoadCallback(function(){
	$('.top-box .left').ifixpng();
	$('.top-box .right').ifixpng();
	$('.top-menu .left-on').ifixpng();
	$('.top-menu .left-off').ifixpng();
	$('.top-menu .right-on').ifixpng();
	$('.top-menu .right-off').ifixpng();
	 
	startclock();
	
});
