		<!--

		platformOffset = 0;
		navigatorOffset = 0;
		
		
		if(navigator.platform.indexOf("Mac")  >= 0) {
				platformOffset = 0;
		}
		if(navigator.platform.indexOf("Win")  >= 0) {
				platformOffset = -9;
		}
		if(navigator.userAgent.indexOf("MSIE")  >= 0) {
				navigatorOffset = 0;
		}	
		if(navigator.userAgent.indexOf("Gecko") >= 0) {
				navigatorOffset = 9;
		}	
		
		function init() {
			ArrowDown		= new Image();
			ArrowDown.src	= "pics/arrow_closed.gif";
			
			ArrowUp			= new Image();
			ArrowUp.src		= "pics/arrow_opened.gif";
		}
		
		init();
		
		function fragezeichenover() {
			var breite;
			breite = document.body.offsetWidth;
			if(breite < 760) {
				breite = 761;
			}
				mehrwert = (breite - 760)/2;
				document.all.wobinich.style.left = mehrwert+15+platformOffset+navigatorOffset;
				document.all.wobinich.style.visibility = "visible";
			
			return true;
		}
		
		
		function fragezeichenout(obj) {
				document.all.wobinich.style.visibility = "hidden";
				return true;
		}
		
		function menuover(obj, num, isSingleMenu) {
			var breite;
			var offset = (6+((num-1)*100)) +platformOffset+navigatorOffset;
			breite = document.body.offsetWidth;
			
			//obj.style.backgroundColor = "#000077";
		//	alert(document.getElementById("NavA-Commerce").style.color);
			
			if(breite < 760) {
				breite = 760;
			}
				mehrwert = (breite - 760)/2;
		
				datd = document.all[obj.id];
				dabreite =  mehrwert+offset;
		
				//document.getElementById("p"+obj.id).src = ArrowDown;
					if(isSingleMenu == 0) {document.all["pic_"+obj.id].src = ArrowDown.src;}
				datd.style.left = mehrwert+offset;
				datd.style.visibility = "visible";
			
		}
		
		function menuout(obj, isSingleMenu) {
		if(isSingleMenu == 0) {
				document.all[obj.id].style.visibility = "hidden";
				document.all["pic_"+obj.id].src = ArrowUp.src;
			}
			
			//obj.style.backgroundColor = "#D7D0D3";
		}
		
		function layerover(obj, arrow) {
			obj.style.visibility = "visible";
			if(arrow) {
				document.all["pic_"+obj.id].src = ArrowDown.src;
			}
		}
		
		function layerout(obj, arrow) {
			obj.style.visibility = "hidden";
			if(arrow) {
				document.all["pic_"+obj.id].src = ArrowUp.src;
			}
		}
		
		function subpointover(obj) {
			document.all[obj].style.backgroundColor = "#FFFF45";
			document.all["lnk"+obj].style.color = "#0000BA";
			//obj.bgColor="#000000";
		}
		
		function subpointout(obj) {
			document.all[obj].style.backgroundColor = "";
			document.all["lnk"+obj].style.color = "#FFFF45";
		}
		
	function thirdlevelover(obj) {
			document.all[obj].style.backgroundColor = "#C1B9C2";
			document.all["lnk"+obj].style.color = "#0000BA";
			//obj.bgColor="#000000";
		}
		
		function thirdlevelout(obj) {
			document.all[obj].style.backgroundColor = "#CEC7CF";
			document.all["lnk"+obj].style.color = "#000000";
		}


		
		function gotopage(pageID) {
			document.location.href = "index.cfm?page="+pageID;
		}