// functions for showing / hiding guided tours

function gtour_show(tourname) {

	document.getElementById('gtour_banner').style.display = "none";
	document.getElementById('gtour_addmargin').style.display = "block";
	document.getElementById('gtour_addmargin-left').style.display = "block";

	if(tourname == "recruiting")
		document.getElementById('gtour_recruiting').style.display = "block";
	else
		document.getElementById('gtour_generic').style.display = "block";

	if(document.getElementById('secondaryContent'))
		document.getElementById('secondaryContent').style.marginTop = "500px";
}


function ftour_hide() {
	document.getElementById('gtour_banner').style.display = "block";
	document.getElementById('gtour_recruiting').style.display = "none";
	document.getElementById('gtour_generic').style.display = "none";
	document.getElementById('gtour_addmargin').style.display = "none";
	document.getElementById('gtour_addmargin-left').style.display = "none";


	if(document.getElementById('secondaryContent'))
		document.getElementById('secondaryContent').style.marginTop = "25px";
}
