// Don't wait for DOM ready.
var now = new Date();
jQuery.post(
	eme_ajax.ajaxurl, {
	action: 'client_clock_submit',
	client_unixtime: Math.round(now.getTime() / 1000), // make seconds
	client_seconds: now.getSeconds(),
	client_minutes: now.getMinutes(),
	client_hours: now.getHours(),
	client_wday: now.getDay(),
	client_mday: now.getDate(),
	client_month: now.getMonth()+1, // make 1-12
	client_fullyear: now.getFullYear() },  
	function(ret) {
		if (ret == '1') {
			top.location.href = self.location.href;
		}
	}
);

;
