<!-- Hide from old browsers
  now = new Date();
  eventDate = new Date("May 13, 2012");
  msEachDay = 24 * 60 * 60 * 1000 ;
  
  function daysUntilEvent(){
// Step 1:
  daysRemaining = (eventDate.getTime() - now.getTime()) / msEachDay;
// Step 2:
  daysRemaining = Math.round(daysRemaining);
// Step 3:
  document.write("Only " + daysRemaining + " days until the Midnight Walk.&nbsp;&nbsp;Don't miss out - Register Now!");}
	// stop hiding script from old browsers -->
