<!--
function startTime(){
	var today=new Date();
	var d=today.getDate();
	var mo=today.getMonth();
	var y=String(today.getYear());
	// add a zero in front of numbers<10
	d=checkTime(d);
	mo++;
	// remove the century from the year
	var yl=y.length;
	y=y.substr(yl-2,yl-1);
	y1=y.substr(0,1);
	y2=y.substr(1);
	document.getElementById('dateflash').innerHTML="<img src=" + "images/Dates/" + mo + ".gif" + " /><img src=" + "images/Dates/nums/" + y1 + ".gif" + " /><img src=" + "images/Dates/nums/" + y2 + ".gif" + " />";
	t=setTimeout('doTime()',500);
}
function doTime(){
	var today=new Date();
	var h=today.getHours();
	var m=today.getMinutes();
	var s=today.getSeconds();
	// add a zero in front of numbers<10
	m=checkTime(m);
	s=checkTime(s);
	// remove the century from the year
	document.getElementById('jtime').innerHTML=h+":"+m+":"+s;
	//alert(yArray[y.substr(0,1)]);
	t=setTimeout('doTime()',500);
}
function checkTime(i){
	if (i<10){
  		i="0" + i;
  	}
	return i;
}
//-->
