   
	var bild_normal = 'http://www.insideout.de/catalog/images/pfeilm.gif';		// Das Bild dass normalerweise erscheint
	var bild_mouseover = 'http://www.insideout.de/catalog/images/pfeilm1.gif';	// Das Bild das erscheint wenn man mit der Maus ueber einen Link geht

	var aufklappzeit = 500;		// Die Zeit die Der Cursor ueber einem Link sein muss bis das DIV aufklappt ... ein Wert von 1000 = 1 Sekunde
	
	
	
	if (document.images){                  
	   var bild1 = new Image();
	   bild1.src = bild_normal   
	   var bild2 = new Image();
	   bild2.src = bild_mouseover;  
	}
   
	
	var js_DOM = document.getElementById;
	
	var openedDIV = false;
	var timeoutDIV = false;
	var timeout = false;
	function openDIV(nr) {
   		if(js_DOM) {
			if(timeout)	window.clearTimeout(timeout);
   			timeout = false;
   			
	   		if(!timeoutDIV && nr != "") {
	   			timeoutDIV = nr;
	   			timeout = window.setTimeout("openDIV()",aufklappzeit);
	   		} else if(timeoutDIV) {
		   		if(openedDIV != false) {
		   			closeDIV();
		   		}
		   		
		   		openedDIV = timeoutDIV;
		   		timeoutDIV = false;
		   		
		   		var obj = document.getElementById(openedDIV);
		   		obj.style.display = "inline";
		   		
	   		}
   		}
	}
   
   
	var timeout = false;
	function closeOtherDIV() {
   		if(js_DOM) {
	   		if(!timeout) {
	   			timeout = window.setTimeout("closeDIV()",aufklappzeit);
	   		}
   		}
	}
	
	function cancelDIV() {
   		if(timeout)	window.clearTimeout(timeout);
   		timeout = false;
   		timeoutDIV = false;
	}
   
	function closeDIV() {
	   	if(js_DOM && openedDIV) {
	   		//alert("close: "+ nr);
	   		var obj = document.getElementById(openedDIV);
	   		obj.style.display = "none";
	   		
	   		openedDIV = false;
	   	}
	}

   
   
   
   var bild_selected = false;
   function ChangePic(bild) {
   		if(document.images[bild]) {
   			if(bild_selected != bild)
   				document.images[bild].src = bild_mouseover;

   			if(bild_selected != false) 
   				document.images[bild_selected].src = bild_normal;

   			if(bild_selected != bild)		bild_selected = bild;
   				else	bild_selected = false;
   			
   		}
   }
   

   
   
   
   
var schnellnavigation_url = "http://www.m-hi.de/demo/servicestelle1/go.php";
function schnellnavigation() {
	var obj = document.navigation.dest;
	if( obj.options[obj.selectedIndex].value != '') {
		var val = obj.options[obj.selectedIndex].value
		if(val.length > 7 && val.substr(0,7) == "_blank_") {
			window.open( schnellnavigation_url+'?dest='+ val.substring(7,val.length), 'Fenster', '');
			return true;
		}
		document.location.href='http://www.m-hi.de/demo/servicestelle1/go.php?dest='+ val;
	}
	return true;
}