function countDownTimer(){
   var theDiv = document.getElementById('countDownDiv');
   var electionDate = new Date("November 4, 2008 17:00:00 GMT");
	var curDate = new Date(); 
	var theCount = Math.floor((electionDate.getTime()-curDate.getTime())/1000);
   
   if(theCount<=0){
      theDiv.value = "Election Time!";
	}else{
      var theSecs,theMins,theHours,theDays;
      var theSecs = theCount%60;
      if(theSecs < 10)
         theSecs = "0"+theSecs;
	   theCount=Math.floor(theCount/60);
	   theMins=theCount%60;
      if(theMins < 10)
         theMins = "0"+theMins;
      theCount = Math.floor(theCount/60);
      theHours = theCount%24;
      if(theHours < 10)
         theHours = "0"+theHours;
	   theCount=Math.floor(theCount/24);
	   theDays = theCount;
      
      theDiv.innerHTML = theDays+" Days, "+theHours+":"+theMins+":"+theSecs;
      
      setTimeout('countDownTimer()',100);
   }
}