/*
Live Date Script- 
� Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use,
visit http://www.dynamicdrive.com
*/


var dayarray=new Array("&#3623;&#3633;&#3609;&#3629;&#3634;&#3607;&#3636;&#3605;&#3618;&#3660;","&#3623;&#3633;&#3609;&#3592;&#3633;&#3609;&#3607;&#3619;&#3660;","&#3623;&#3633;&#3609;&#3629;&#3633;&#3591;&#3588;&#3634;&#3619;","&#3623;&#3633;&#3609;&#3614;&#3640;&#3608;","&#3623;&#3633;&#3609;&#3614;&#3620;&#3627;&#3633;&#3626;&#3610;&#3604;&#3637;","&#3623;&#3633;&#3609;&#3624;&#3640;&#3585;&#3619;&#3660;","&#3623;&#3633;&#3609;&#3648;&#3626;&#3634;&#3619;&#3660;")
var montharray=new Array("&#3617;&#3585;&#3619;&#3634;&#3588;&#3617;","&#3585;&#3640;&#3617;&#3616;&#3634;&#3614;&#3633;&#3609;&#3608;&#3660;","&#3617;&#3637;&#3609;&#3634;&#3588;&#3617;","&#3648;&#3617;&#3625;&#3634;&#3618;&#3609;","&#3614;&#3620;&#3625;&#3616;&#3634;&#3588;&#3617;","&#3617;&#3636;&#3606;&#3640;&#3609;&#3634;&#3618;&#3609;","&#3585;&#3619;&#3585;&#3598;&#3634;&#3588;&#3617;","&#3626;&#3636;&#3591;&#3627;&#3634;&#3588;&#3617;","&#3585;&#3633;&#3609;&#3618;&#3634;&#3618;&#3609;","&#3605;&#3640;&#3621;&#3634;&#3588;&#3617;","&#3614;&#3620;&#3624;&#3592;&#3636;&#3585;&#3634;&#3618;&#3609;","&#3608;&#3633;&#3609;&#3623;&#3634;&#3588;&#3617;")

function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
var dn="AM"
if (hours>=12)
dn="PM"
if (hours>12){
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here
var cdate=dayarray[day]+" &#3607;&#3637;&#3656; "+daym+" "+montharray[month]+" "+year
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}
if (!document.all&&!document.getElementById)
getthedate()
function goforit(){
if (document.all||document.getElementById)
setInterval("getthedate()",1000)
}
