function m_over(id)
{
	document.getElementById(id).style.backgroundImage = "url('images/schraffurused.gif')";
}

function m_out(id)
{
	document.getElementById(id).style.backgroundImage = "url('images/schraffur.gif')";
}
//-->

<!--
var vis = 0;

function togglesub()
{
  	 if(vis == 1)
		 hidesub();
	 else
		showsub();
 }

function showsub()
{
	vis = 1;
	 ml_over("unternehmen");
	 document.getElementById("subcat").style.visibility="visible";
 }

function hidesub()
{
	vis = 0;
	ml_out("unternehmen");
	document.getElementById("subcat").style.visibility="hidden";
 }

function ml_over(id)
{
	document.getElementById(id).style.backgroundColor = "#ECDCAF";
}

function ml_out(id)
{
	document.getElementById(id).style.backgroundColor = "";
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}