d = new Array("Sun","Mon.","Tues.","Wed.","Thur.","Fri.","Sat.");
m = new Array("Jan","Feb","March","April","May","June","July","August","Sept","October","Nov","Dec");

	var start; var start2;	
	var stop; var stop2;
				
	today = new Date();
	day = today.getDay();

	document.write("<img src='scripts/images/hours.png' alt=''/><b>" + d[day] + ", " + m[today.getMonth()] + " " + today.getDate() + "</b>")
	document.write("<hr size=1 width=100px/><p/>Today's office hours:");

	if (day == 1 || day == 3)
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9:00 A.M. to 1:00 P.M.<br/><div style='text-align:center;'>&</div>");
		start=9; stop=13;
		document.write("<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3:00 P.M. to 6:00 P.M.");
		start2=15; stop2=18;
	}

	if (day == 2 || day == 4)
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3:00 P.M. to 6:00 P.M.");
		start=15; stop=18;
	}

	if (day == 6)
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By appointment only.");
		start=0; stop=0;
	}

	if (day == 0)
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Closed.");
		start=0; stop=0;
	}

	if (day == 5)
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9:00 A.M. to 1:00 P.M.");
		start=9; stop=13;
	}

	document.write("<div style='font-size: xx-small; text-align:right;'>* Subject to change.</div>")
	document.write("<hr size=1 width=100px/>");

	if ((today.getHours() >= start && today.getHours() < stop) || (today.getHours() >= start2 && today.getHours() < stop2))
	{
		document.write("<p/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The office is open.");
	}
	else
	{
		document.write("<p/>Sorry the office is presently closed, but please feel free to call or <a href='mailto:capps@chirohealth.us?cc=drart@chirohealth.us?subject=Message%20from%20website%20while%20closed'>email</a> and leave a message.");
	}

