<!--
//This script posts the exact day and time you arrived
//if(!document.layers)
//{
function show_time() {
	var now = new Date();
	var hour = now.getHours();
	var minute = now.getMinutes();
	var second = now.getSeconds();
	var monthnumber = now.getMonth();
	var monthday = now.getDate();
	var year = now.getYear();
	var am_pm= "AM"

	if(hour>12) {
		am_pm="PM";
		hour=hour-12;
	} else {
		am_pm="AM";
	}
	if(minute<10) minute="0"+ minute;
	if(second<10) second="0"+ second;

	document.getElementById('clock').innerHTML= hour + ":" + minute + ":" + second + " " + am_pm;
	id = setTimeout("show_time()",1000);
}

 RightNow = new Date();
 
 document.write("<style type='text/css'>");
 document.write("<!-- @import url(filecabinet/css/clock.css); -->");
 document.write("</style>");
 document.write("<div class='clock'><span id='clock'></span><br />");
 document.write("Date: "+(RightNow.getMonth()+1)+"-"+RightNow.getDate()+"-"+RightNow.getFullYear()+"<br />");
 document.write('Merrill, MI<br /></div>');
 setTimeout("show_time()",1000);
// document.write('<a href="http://www.wunderground.com/US/MI/hemlock.html"'+' target="main">');
// document.write('<img border="0" class="weather_banner" src="http://banners.wunderground.com/banner/gizmotimetemp/US/MI/hemlock.gif"'+'alt="Click for Forecast"'+' height="41"'+' width="111"'+' NATURALSIZEFLAG="0"'+' valign="bottom" /></a></span>');
//}
//-->