function goMenuItem(strItem)
{
	clearSelections();
	switch(strItem)
	{
		case "home" :
			document.getElementById("idHome").style.display = "block";
			break;
		case "programs" :
			document.getElementById("idPrograms").style.display = "block";
			break;
		case "contact_us" :
			document.getElementById("idContact_us").style.display = "block";
			break;
		default :
			document.getElementById("idHome").style.display = "block";
			break;						
	}
}

function clearSelections()

{
	document.getElementById("idHome").style.display = "none";
	document.getElementById("idPrograms").style.display = "none";
	document.getElementById("idContact_us").style.display = "none";
}

function goGame(game_time)
{
	clearSelections();
	document.getElementById("idPrograms").style.display = "block";
	switch (game_time)
	{
		case "g930":
			window.location = "#breakfast";
			break;
		case "g1230":
			window.location = "#matinee";
			break;
		case "g330":
			window.location = "#afternoon";
			break;
		case "g615815":
			window.location = "#evening";
			break;
		case "g615815f":
			window.location = "#friday";
			break;
		case "g615815s":
			window.location = "#saturday";
			break;
		case "g1030":
			window.location = "#latenight";
			break;
	}
}
function goPicture(objElement, strPrefix, strExtension)
{
	strHref = "";
	strHref = objElement.src;
	strHrefLength = strHref.length;
	if ( strHrefLength > 4 )
	{
		if ( strPrefix != "" )
		{
			strHref = strHref.replace(strPrefix, "", "gi");
		}
		if ( strExtension != "" )
		{
			strHref = strHref.substring( 0, (strHref.length - 3) )
			strHref = strHref + strExtension;
		}
		window.open(strHref,"picture","menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=yes,outerWidth=800,outerHeight=600");
	}
	
}

