
function gotoact() {
	if(document.getElementById("acts-select").value != "0") {
	
		document.getElementById("divhost").style.backgroundColor = "transparent";
		document.getElementById("divgogo").style.backgroundColor = "transparent";
		document.getElementById("divstrip").style.backgroundColor = "transparent";
		document.getElementById("divpaal").style.backgroundColor = "transparent";
		document.getElementById("divtopless").style.backgroundColor = "transparent";
		document.getElementById("divvuur").style.backgroundColor = "transparent";
		document.getElementById("divcandy").style.backgroundColor = "transparent";
		document.getElementById("divcoyote").style.backgroundColor = "transparent";
		document.getElementById("divladies").style.backgroundColor = "transparent";
		document.getElementById("divsm").style.backgroundColor = "transparent";
		document.getElementById("divpersonal").style.backgroundColor = "transparent";	
		
		window.location.href = "http://localhost/gwendy/boekingskantoor.html#" + document.getElementById("acts-select").value;
		
		document.getElementById("div" + document.getElementById("acts-select").value).style.backgroundColor = "#414141";

	}
}