window.onload = function()
{
	startTime();
}

function startTime()
{
	var today=new Date()
	var h=today.getHours()
	var m=today.getMinutes()
	var s=today.getSeconds()
	// add a zero in front of numbers<10
	var appendix = '';
	
	if (h>=12)
	{
		h = h - 12;
		appendix = 'pm';
	}
	else
		appendix = 'am';
		
	if (h=='0')
		h = '12';
		
	h=checkTime(h);
	m=checkTime(m);
	s=checkTime(s);
	document.getElementById('time').innerHTML=h+":"+m+":"+s+" "+appendix;
	t=setTimeout('startTime()',1000)
}

function checkTime(i)
{
if (i<10) 
  {i="0" + i}
  return i
}