// JavaScript Document
<script language="javascript">
	var currentdtm = new Date()
	var mymonth = currentdtm.getMonth()+1 // 1-12
	var mydate = currentdtm.getDate() // Actual date ie., 1-31
	var myday = currentdtm.getDay()+1 // Day of the week, 1-7
	var myhour = currentdtm.getHours() // 0-23
	var mymin = currentdtm.getMinutes() 
	var status = "Currently ";
	var status0 = "Open";
	var status1 = "Closed";
	var status2 = "Closing";
	var hol = 0; // Determines if there is a national holiday that day

//		document.write(myday,'-',myhour,'-',mymin,'<br>');
//		What to do for holidays, etc? I think we make the first 'if' check the month and day, then nest these 'ifs'
	// Should use an array for the dates in the next year,

function ruo()
{
	document.write("closed forever");
//	if ((mymonth == 7 && mydate == 4) || (mymonth == 9 && mydate == 1) || (mymonth == 11 && mydate == 27) ||(mymonth == 12 && mydate == 25))  //xmas
//	{
//		document.write("closed forever");
//		hol = 1;
//	}
//	if ((hol == 0) && (myday == 1 || myday == 7)) // Weekends
//	{
//		document.write(status,status1);	
//	}
//	else if ((hol == 0) && (myday == 2 || myday == 3 || myday == 4 || myday == 5)) // M, T, W, R 
//	{
//		if (myhour == 7 && mymin >= 30) // If it is 7 am, and after or equal to 7:30 am
//		{
//			document.write(status,status0);
//		}
//		else if (myhour >= 8 && myhour < 17) // Between 8-16 (8-4 pm, before 5 pm)
//		{
//			document.write(status,status0);
//		}
//		else if (myhour == 17 && mymin <= 29) // If it is 5 pm, and before 5:30 pm
//		{
//			document.write(status,status0);
//		}
//		else
//		{
//			document.write(status,status1);
//		}
//	}
//	else if ((hol == 0) && (myday == 6)) // F
//	{
//		if (myhour == 7 && mymin >= 30) // If it is 7 am, and after or equal to 7:30 am
//		{
//			document.write(status,status0);
//		}
//		else if (myhour >= 8 && myhour < 15) // Between 8-15 (ie. 8-2 pm, any time before 3 pm)
//		{
//			document.write(status,status0);
//		}
//		else
//		{
//			document.write(status,status1);
//		}
//	}
}

function lm()
{
	document.write("boo yah");
}

// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
<!--
/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com)
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function rImage()
{
	var shopImages=new Array()
	//specify random images below. You can have as many as you wish
	shopImages[1]="images/shop/shop001.jpg"
	shopImages[2]="images/shop/shop002.jpg"
	
	var ry=Math.floor(Math.random()*shopImages.length)
	if (ry==0)
	ry=1
	document.write('<img src="'+shopImages[ry]+'" border=0>')
}

rImage()
//-->
</script>
