// JavaScript Document
var lightIsOn = true;
//var coursesRE = new RegExp("*/courses/*/index.cfm","i");
function hitTheSwitch()
{
	//show/hide PHOTO info elements
	if(lightIsOn)
	{
		
		document.getElementById("lightSwitchContent").style.visibility = "hidden";
		
		//only the courses pages have the flash container
		//if(theURL.indexOf("/courses/") != -1)
		if(document.getElementById("coursePlayerFlashContainer") != null)
		{
			document.getElementById("coursePlayerFlashContainer").style.visibility = "hidden";

		}

		
		document.getElementById("photoInfoContainer").style.zIndex = 100;
		document.getElementById("photoInfoPopUp").style.visibility = "visible";
		
		lightIsOn = false;
	}
	else
	{
		document.getElementById("lightSwitchContent").style.visibility = "visible";
		
		if(document.getElementById("coursePlayerFlashContainer") != null)
		{
			document.getElementById("coursePlayerFlashContainer").style.visibility = "visible";
		}

		document.getElementById("photoInfoPopUp").style.visibility = "hidden";
		document.getElementById("photoInfoContainer").style.zIndex = -1;
		lightIsOn=true;
	}
}


