/*   Free Script provided by HIOXINDIA            */
/*   visit us at http://www.hscripts.com     */
/*   This is a copyright product of hioxindia.com */

var rTimer;
var sds ;

function TimeTick()
{
      sds =  new Date();
      hour=sds.getHours();
      min=sds.getMinutes();
      sec=sds.getSeconds();
      var day = sds.getDate();
      var month = sds.getMonth() + 1;
      var year = sds.getFullYear();
      if(day < 10){
          day = "0" + day;
      }
      if(month < 10){
          month = "0" + month;
      }
      if (hour < 10) hour = "0"+hour;
      if (min < 10) min = "0"+min;
      if (sec < 10) sec = "0"+sec;  	
      if(document.getElementById("date_dt") != null && document.getElementById("date_dt").innerHTML == ":"){
          document.getElementById("date_dt").innerHTML = "&nbsp;";
      }
      else{
          document.getElementById("display_date").innerHTML = day + "." + month + "." + year + " "+hour+"<span id=\"date_dt\">:</span>"+min;
          //document.time.tfield.value=""+hour+":"+sec;
      }
	
	if(rTimer)
		{
			clearTimeout(rTimer);
		}

	rTimer = setTimeout('TimeTick()', 1000);
}

$(function(){
  TimeTick();
});
