/***************************************************
* Born Interactive (http://www.borninteractive.com)
****************************************************/

var weekdaystxt=["&#1575;&#1604;&#1571;&#1581;&#1583;","&#1575;&#1604;&#1575;&#1579;&#1606;&#1610;&#1606;","&#1575;&#1604;&#1579;&#1604;&#1579;&#1575;&#1569;","&#1575;&#1604;&#1571;&#1585;&#1576;&#1593;&#1575;&#1569;","&#1575;&#1604;&#1582;&#1605;&#1610;&#1587;","&#1575;&#1604;&#1580;&#1605;&#1593;&#1577;","&#1575;&#1604;&#1587;&#1576;&#1578;"]
var months     =["&#1603;&#1575;&#1606;&#1608;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610;","&#1588;&#1576;&#1575;&#1591;","&#1570;&#1584;&#1575;&#1585;","&#1606;&#1610;&#1587;&#1575;&#1606;","&#1571;&#1610;&#1575;&#1585;","&#1581;&#1586;&#1610;&#1585;&#1575;&#1606;","&#1578;&#1605;&#1608;&#1586;","&#1570;&#1576;","&#1571;&#1610;&#1604;&#1608;&#1604;","&#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1571;&#1608;&#1604;","&#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610;","&#1603;&#1575;&#1606;&#1608;&#1606; &#1575;&#1604;&#1571;&#1608;&#1604;"]

function showLocalTime(container, servermode, offsetMinutes, displayversion){
	
	if (!document.getElementById || !document.getElementById(container)) return;
	this.container=document.getElementById(container);
	
	this.displayversion=displayversion
	//var servertimestring=(servermode=="server-php")? '<?php print date("F d, Y H:i:s", time()) ?>' : (servermode=="server-ssi")? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>'
	var servertimestring = timenow;
	this.localtime=this.serverdate=new Date(servertimestring)
	var GMTOffset = this.serverdate.getTimezoneOffset(); //minutes offset from GMT
	//alert(this.serverdate.getTimezoneOffset());
	offsetMinutes += GMTOffset;
	this.localtime.setTime(this.serverdate.getTime()+offsetMinutes*60*1000) //add user offset to server time
	this.updateTime()
	this.updateContainer()
}

showLocalTime.prototype.updateTime=function(){
	var thisobj=this
	this.localtime.setSeconds(this.localtime.getSeconds()+1)
	setTimeout(function(){thisobj.updateTime()}, 60000) //update time every second
}

showLocalTime.prototype.updateContainer=function(){
	var thisobj=this
	
	var hour=this.localtime.getHours()
	var minutes=this.localtime.getMinutes()
	var seconds=this.localtime.getSeconds()
	var ampm=(hour>=12)? "&#1576;.&#1592;" : "&#1602;.&#1592;"
	
	var dayofweek=weekdaystxt[this.localtime.getDay()]
	var month = months[this.localtime.getMonth()]
	var year = this.localtime.getFullYear()
	var day = this.localtime.getDate()
	
	this.container.innerHTML=dayofweek+"&nbsp;&nbsp;|&nbsp;&nbsp;"+day+" "+month+" "+year+"&nbsp;&nbsp;|&nbsp;&nbsp;"+formatField(hour, 1)+":"+formatField(minutes)+" "+ampm
	
	setTimeout(function(){thisobj.updateContainer()}, 60000) //update container every minute
}

function formatField(num, isHour){
	if (typeof isHour!="undefined"){ //if this is the hour field
	var hour=(num>12)? num-12 : num
	return (hour==0)? 12 : hour
	}
	return (num<=9)? "0"+num : num//if this is minute or sec field
}

