// The hover-effect for the menu
function act(what, status) {
	if(status)
		what.className = "act";
	else
		what.className = "";
}

function doclick(what) {
	location.href = "page.php?p="+what;
}
