// Navigation Section
var currentfocus = "NA";

function CSD_hover(buttonid, dynamicheight)
{
	if (currentfocus != "" && currentfocus != "NA") {currentfocus.style.backgroundPosition = ""; currentfocus.style.color = "#000000";}
	var buttonlight = document.getElementById(buttonid); buttonlight.style.color = "#F5E838"; buttonlight.style.backgroundPosition = "0 -40px";	 buttonlight.style.cursor = "pointer";
	if (dynamicheight != "NA") {
		dynamicheight = dynamicheight + "px";
		var clearleft = document.getElementById("CSDclearnavleft"); var clearright = document.getElementById("CSDclearnavright");
		clearright.style.height = dynamicheight; clearleft.style.height = dynamicheight;
	}
	currentfocus = buttonlight;
}

function CSD_clearnav()
{
	if (currentfocus != "" && currentfocus != "NA") {currentfocus.style.backgroundPosition = ""; currentfocus.style.color = "#000000";}
	var CSD_subnavs = document.getElementById("AJAX_csubnav"); CSD_subnavs.innerHTML = ""; CSD_subnavs.style.margin = "";
}

function redirect(page)
{
	var url;
	if (page == "Exordium") {url = "http://www.actionresponseteam.com/ConfinedSpaceDivision/Exordium/";}
	if (page == "Crew") {url = "http://www.actionresponseteam.com/ConfinedSpaceDivision/Crew/";}
	if (page == "Training") {url = "http://www.actionresponseteam.com/ConfinedSpaceDivision/Training/";}
	if (page == "Equipment") {url = "http://www.actionresponseteam.com/ConfinedSpaceDivision/Equipment/";}
	if (page == "Safety") {url = "http://www.actionresponseteam.com/SafetyStatement/";}
	if (page == "FAQs") {url = "http://www.actionresponseteam.com/ConfinedSpaceDivision/FAQs/";}
	if (page == "Print") {url = "http://www.actionresponseteam.com/SafetyStatement/PDFdirectory/";}
	window.location = url;
}