// tƎ
function Timer() {
now = new Date();
month = now.getMonth()+1;
day = now.getDate();
youbi = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
hour = now.getHours();
minute = now.getMinutes();
second = now.getSeconds();
if (month < 10) { month = '0' + month }
if (day < 10) { day = '0' + day }
if (hour < 10) { hour = '0' + hour }
if (minute < 10) { minute = '0' + minute }
if (second < 10) { second = '0' + second }
document.getElementById("time").innerHTML =month + '/' + day + ' (' + youbi[now.getDay()] + ') ' + hour + ':' + minute + ':' + second; setTimeout('Timer()',1000);
}
Timer();