﻿jQuery(document).ready(function(){

  jQuery('.cart').countdown({until: new Date(2013, 5 - 1, 18), compact: true, 
    layout: '<font color="red">◆</font> <font color="#EF1921">同</font> <font color="#F76D22">在</font> <font color="#F9B917">一</font> <font color="#73BD42">起</font>  <font color="#008C4A">迎</font> <font color="#0379C4">百</font> <font color="#742A94">年</font> <font color="red">◆</font> 还 有 <b><font color="#FA480A">{dn} {dl} {hnn}{sep}{mnn}{sep}{snn}</font></b> {desc}', description: '到 <font color="red">宽 柔 百 年 校 庆</font>', serverSync: serverTime});



});

function serverTime() { 
    var time = null; 
    jQuery.ajax({url: 'http://www.foonyew.org.my/serverTime.php', 
        async: false, dataType: 'text', 
        success: function(text) { 
            time = new Date(text); 
        }, error: function(http, message, exc) { 
            time = new Date(); 
    }}); 
    return time; 
}

