
window.onload = startTime;

function startTime() {
	
	var actualTime = $("#Clock").text();

	//date is not important, only the time
	var today = new Date('1/1/2012 ' + actualTime);

	today.setTime(today.getTime() + 1000);
	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);
	$('#Clock').text(h+":"+m+":"+s);
	t=setTimeout('startTime()', 1000);
}

function checkTime(i) {
	if (i<10) {
		i="0" + i;
	}
	return i;
}
