var Countdown={timer:null,init:function(id,until){Countdown.node=document.getElementById(id);Countdown.update(until);Countdown.timer=setInterval(function(){Countdown.update(until);},1000);},stop:function(){clearInterval(Countdown.timer);return true;},update:function(until){var s=Countdown.process(new Date(),until);Countdown.node.innerHTML=s||Countdown.stop()&&'';},difference:function(before,after){if(after<before)return false;var days=Math.floor((after/1000-before/1000)/86400-30),hms=(after/1000-before/1000)%86400,seconds=Math.floor(hms%60),minutes=Math.floor(hms/60)%60,hours=Math.floor(hms/3600)%60,date=new Date();return{days:days,hours:hours,minutes:minutes,seconds:seconds};},process:function(before,after){var diff=null,a=[],i='';if(!(diff=Countdown.difference(before,after)))return false;for(i in diff){if(diff[i]) a.push('<span>'+diff[i]+'</span><span>'+Countdown.lang[i][Countdown.lang.choose(diff[i])]+'</span>'); else a.push('<span>00</span><span>'+Countdown.lang[i][Countdown.lang.choose(diff[i])]+'</span>');} return a.join(' ');},lang:{days:['дн.'],hours:['час.'],minutes:['мин.'],seconds:['сек.'],choose:function(n){return 0;}}};
window.onload=function(){Countdown.init('countbox',new Date(2012,03,27,0,0,00));};

