<!--
	function visible_subnavi($nr,$nr2){
		$id = "subnavi_"+$nr;
		$id2 = "subnavi_"+$nr2;
		$vars = document.getElementsByTagName("div");
		for($i=0;$i<$vars.length;$i++){
			if($vars[$i].className=="div_subnavi"){
				if($vars[$i].id!=$id2){
					$vars[$i].style.visibility = "hidden";
				}
			}
			if($vars[$i].className=="div_subnavi2"){
				$vars[$i].style.visibility = "hidden";
			}
		}
		if($nr!="null"){
			document.getElementById($id).style.visibility = "visible";
		}
		document.getElementById("div_masterdiv").style.visibility = "visible";
	}
	
	function unvisible_subnavi(){
		$vars = document.getElementsByTagName("div");
		for($i=0;$i<$vars.length;$i++){
			if($vars[$i].className=="div_subnavi"){
				$vars[$i].style.visibility = "hidden";
			}
			if($vars[$i].className=="div_subnavi2"){
				$vars[$i].style.visibility = "hidden";
			}
		}
		document.getElementById("div_masterdiv").style.visibility = "hidden";
	}
	
	function rollover_subnavi($id){
		if(document.getElementById($id).style.backgroundColor=="rgb(231, 231, 231)"){
			document.getElementById($id).style.backgroundColor='rgb(204, 204, 204)';
		}
		if(document.getElementById($id).style.backgroundColor=="rgb(247, 231, 231)"){
			document.getElementById($id).style.backgroundColor='rgb(220, 204, 204)';
		}
		if(document.getElementById($id).style.backgroundColor=="#e7e7e7"){
			document.getElementById($id).style.backgroundColor='#cccccc';
		}
		if(document.getElementById($id).style.backgroundColor=="#f7e7e7"){
			document.getElementById($id).style.backgroundColor='#dccccc';
		}
	}
	
	function rollout_subnavi($id){
		if(document.getElementById($id).style.backgroundColor=="rgb(204, 204, 204)"){
			document.getElementById($id).style.backgroundColor='rgb(231, 231, 231)';
		}
		if(document.getElementById($id).style.backgroundColor=="rgb(220, 204, 204)"){
			document.getElementById($id).style.backgroundColor='rgb(247, 231, 231)';
		}
		if(document.getElementById($id).style.backgroundColor=="#cccccc"){
			document.getElementById($id).style.backgroundColor='#e7e7e7';
		}
		if(document.getElementById($id).style.backgroundColor=="#dccccc"){
			document.getElementById($id).style.backgroundColor='#f7e7e7';
		}
	}
	
	
-->