/*$(function() {
	timeExam();
	$("a.fancy_register").fancybox({
		'padding' : 0,
		'overlayOpacity' : 0,
		'hideOnContentClick' : false,
		'frameWidth' : 474,
		'frameHeight' : 364,
		'zoomSpeedIn': 0, 
		'zoomSpeedOut': 0
	});
	$("a.login_now").fancybox({
		'padding' : 0,
		'overlayOpacity' : 0,
		'hideOnContentClick' : false,
		'frameWidth' : 474,
		'frameHeight' : 464,
		'zoomSpeedIn': 0, 
		'zoomSpeedOut': 0
	});
	
});*/
$(function() {
	// timeExam();
});
function timeExam() {
	var gettime = '/servertime.php?' + new Date().getTime();
	$.ajax({
	url : gettime,//"/servertime.php",
	success : function (data) {
		$(".jclock").html(data);
		}
	});
	setTimeout("timeExam()", 60000);
}


