	citytime();
	var now = new Date()
	var hrs = now.getHours()
	var min = now.getMinutes()
	var user = -(now.getTimezoneOffset() / 60)
	var day = new Date();
	var currentTimeZoneOffsetInHours = - day.getTimezoneOffset()/60;

	var ClockId = null;
	var ClockRunning = false;

	var dayNames = new Array("الأحد","الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت");
	var monthNames = new Array(
	"يناير","فبراير","مارس","إبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر");
	var now = new Date();
	
	dateAr=dayNames[now.getDay()] + ", " + now.getDate() + " " + monthNames[now.getMonth()] + ", " + now.getYear();


	function TOfunc(){
		var today = new Date();
		var hours = today.getHours();
		var minutes = today.getMinutes();
		var secs = today.getSeconds();
		today.setHours(hours);
		//ST = today.toString();
		ST1 = today.toString();
		//ST = ST.substring(4,10) + ". " + ST.substring(28,34)
		var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
		var monthNames = new Array(
		"January","February","March","April","May","June","July","August","September","October","November","December");
		var now = new Date();
		ST=(dayNames[now.getDay()] + ", " + monthNames[now.getMonth()] + " " + now.getDate() + ", " + now.getYear());		
		//TT= ST1.substring(10,19)

		ClockId = window.setTimeout( "TOfunc()", 1000 );
		ClockRunning = true;
	}

	function stopClock(){
		if(ClockRunning) clearTimeOut(ClockId); ClockRunning = false;
	}

	function citytime(){
		stopClock;
		TOfunc();
	}

