setInterval(ShowClock, 60000);
function ShowClock()
{
	$.post("clock.php", "+2", function(data){
		$("#clock").html(data);
	});

}

