function switchBoxLeft(box, tab) 
{
	$('detail_box_newsletter').style.display = "none";
	$('link_newsletter').className="inactive";
		
	$('detail_box_naturparadies').style.display = "none";
	$('link_naturparadies').className="inactive";
	
	$('detail_box_'+box).style.display = "";	
	tab.className="active";
	
	return false;
}

function switchBoxRight(box, tab) 
{
	$('detail_box_wetter').style.display = "none";
	$('link_wetter').className="inactive";
		
	//$('detail_box_webcam').style.display = "none";
	//$('link_webcam').className="inactive";
		
	$('detail_box_fotogalerie').style.display = "none";
	$('link_fotogalerie').className="inactive";
	
	$('detail_box_videos').style.display = "none";
	$('link_videos').className="inactive";
	
	$('detail_box_anreise').style.display = "none";
	$('link_anreise').className="inactive";
	
	$('detail_box_'+box).style.display = "";	
	tab.className="active";
	
	return false;
}

sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
	sfEls[i].onmouseover=function() {
		this.className+=" sfhover";
	}
	sfEls[i].onmouseout=function() {
		this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
	}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
