<!--
var statustext = "";
var preloadFlag = false;
var menuselected = 0;
var umenuselected = 0;

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}


function preloadImages() {
	if (document.images) {
		b10h = newImage("images/10h.gif");
		b10l = newImage("images/10.gif");
		preloadFlag = true;
	}
}



function chHIGH()
{
 statustext = "";
  
 if(menuselected >= menumin && menuselected <= menumax){
  if(umenu[menuselected - 1][chHIGH.arguments[0] - 1] != ""){
  	document["bx" + chHIGH.arguments[0]].src = "images/" + menuselected + chHIGH.arguments[0] + "h.gif";
	
	if(document.layers){
  
  
  	}else
  	{
    	chHIGH.arguments[1].style.cursor = 'pointer';
  	}
	
  }
  else{
  	
	document["bx" + chHIGH.arguments[0]].src = "images/nix.gif";
	if(document.layers){
  
  
  	}else
  	{
    	chHIGH.arguments[1].style.cursor = 'default';
  	}

  }
  }
  else
  {
  	document["bx" + chHIGH.arguments[0]].src = "images/nix.gif";
	if(document.layers){
  
  
  	}else
  	{
    	chHIGH.arguments[1].style.cursor = 'default';
  	}
  }
}

function chLOW()
{
	
	statustext = "";
	if(menuselected >= menumin && menuselected <= menumax && umenuselected != chLOW.arguments[0]){
		if(umenu[menuselected - 1][chLOW.arguments[0] - 1] != ""){
  			document["bx" + chLOW.arguments[0]].src = "images/" + menuselected + chLOW.arguments[0] + ".gif"
  		}
  		else{
  			document["bx" + chLOW.arguments[0]].src = "images/nix.gif";
		}
	}
}


function menuSELECT(){

umenuselected = menuSELECT.arguments[1]
for (var l=menumin; l <= menumax; l++) {
     if (menuSELECT.arguments[0] == l){
	 	
		menuselected = l;
		menuSHOW(l);
		
	 }
	 else{
	 	document["b" + l + "0"].src = "images/" + l + "0.gif"
	 }
}


}


function menuCLICK(){


	l=0;
	
	while (umenu[menuCLICK.arguments[0]-1][l] == "") {l++;}
	
	location.href = umenu[menuCLICK.arguments[0]-1][l];
	
}


function menuOver(){
	
	if (menuselected != menuOver.arguments[0]){
	
		document["b" + menuOver.arguments[0] + "0"].src = "images/" + menuOver.arguments[0] + "0h.gif"
		
	}

}

function menuOut(){

	if (menuselected != menuOut.arguments[0]){
	
		document["b" + menuOut.arguments[0] + "0"].src = "images/" + menuOut.arguments[0] + "0.gif"
		
	}

}

function menuSHOW(){

	  document["b" + menuSHOW.arguments[0] + "0"].src = "images/" + menuSHOW.arguments[0] + "0h.gif"
	for (var i=umenumin; i <= umenumax; i++) {
		if(umenu[menuSHOW.arguments[0] - 1][i - 1]==""){
			document["bx"  + i].src = "images/nix.gif"
		}
		else{
			
			if (umenuselected == i){
				document["bx"  + i].src = "images/" + menuSHOW.arguments[0] + i +"h.gif";
			}
			else{
				document["bx"  + i].src = "images/" + menuSHOW.arguments[0] + i +".gif";
			}
		}
	}
}

function jump(){
if(menuselected >= menumin && menuselected <= menumax){
	if(umenu[menuselected - 1][jump.arguments[0] - 1] != ""){
		location.href = umenu[menuselected - 1][jump.arguments[0] - 1];
	}
}
}

menumin = 1;
menumax = 6;


umenumin = 1;
umenumax = 7;

umenu = [	["standort_dresden.php", "philosophie.php", "ma_geisler.php", "praktikum.php", "ba_studium.php" ,"impressum.php", ""],
		 	["ko_software.php", "ko_internet.php", "ko_cdrom.php", "ko_3d.php" ,"ko_spiele.php", "ko_druck.php", ""],
			["ku_cms.php", "ku_land.php", "ku_picture.php", "ku_event.php" ,"", "", ""],
			["", "fa_illu.php", "fa_foto.php", "fa_3d.php" ,"", "", ""],
			["", "do_viren.php", "do_browser.php" ,"do_player.php", "do_anleit.php", "", ""],
			["", "", "" ,"", "", "ak_email.php", ""]];


//-->
