//CEC site Selection
//Coded by: Ben Smith
//Please do not edit without permission


//used for displaying the pulldown menu if javascript is enabled (otherwise it is hidden)
function showMenu(){
	document.getElementById("pullDown").style.display = "block";
	document.getElementById("choose").options.selectedIndex = 0;
}

function resetSite(){
	document.getElementById("choose").options.selectedIndex = 0;
}

function chooseSite(){
	var chosen = document.getElementById("choose").selectedIndex;
	var website = document.getElementById("choose").options[chosen].value;
	if(website != "none"){
		resetSite();
		location.href=website;
	}
	else{
		resetSite();
	}
}