function menuHover(itemtype) {
	
	if (itemtype == "m_stetic") {
		document.getElementById("m_stetic").style.backgroundImage = "url('images/home_r.gif')";
	}
	if (itemtype == "m_stylistin") {
		document.getElementById("m_stylistin").style.backgroundImage = "url('images/stylistin_r.gif')";
	}
	if (itemtype == "m_konzept") {
		document.getElementById("m_konzept").style.backgroundImage = "url('images/konzept_r.gif')";
	}
	if (itemtype == "m_leistungen") {
		document.getElementById("m_leistungen").style.backgroundImage = "url('images/leistungen_r.gif')";
	}
	if (itemtype == "m_produkte") {
		document.getElementById("m_produkte").style.backgroundImage = "url('images/produkte_r.gif')";
	}
	if (itemtype == "m_bilder") {
		document.getElementById("m_bilder").style.backgroundImage = "url('images/bilder_r.gif')";
	}
	if (itemtype == "m_anfahrt") {
		document.getElementById("m_anfahrt").style.backgroundImage = "url('images/anfahrt_r.gif')";
	}
	if (itemtype == "m_kontakt") {
		document.getElementById("m_kontakt").style.backgroundImage = "url('images/kontakt_r.gif')";
	}
	
	if (itemtype == "stoerer") {
		document.getElementById("stoerer").style.backgroundImage = "url('images/stoerer_aktiv.jpg')";
		document.getElementById("stoerermain").style.visibility = "visible";
	}
	
}

function menuOut(itemtype) {
	
	if (itemtype == "m_stetic") {
		document.getElementById("m_stetic").style.backgroundImage = "url('images/home_w.gif')";
	}
	if (itemtype == "m_stylistin") {
		document.getElementById("m_stylistin").style.backgroundImage = "url('images/stylistin_w.gif')";
	}
	if (itemtype == "m_konzept") {
		document.getElementById("m_konzept").style.backgroundImage = "url('images/konzept_w.gif')";
	}
	if (itemtype == "m_leistungen") {
		document.getElementById("m_leistungen").style.backgroundImage = "url('images/leistungen_w.gif')";
	}
	if (itemtype == "m_produkte") {
		document.getElementById("m_produkte").style.backgroundImage = "url('images/produkte_w.gif')";
	}
	if (itemtype == "m_bilder") {
		document.getElementById("m_bilder").style.backgroundImage = "url('images/bilder_w.gif')";
	}
	if (itemtype == "m_anfahrt") {
		document.getElementById("m_anfahrt").style.backgroundImage = "url('images/anfahrt_w.gif')";
	}
	if (itemtype == "m_kontakt") {
		document.getElementById("m_kontakt").style.backgroundImage = "url('images/kontakt_w.gif')";
	}	

	if (itemtype == "stoerer") {
		document.getElementById("stoerer").style.backgroundImage = "url('images/stoerer_inaktiv.jpg')";
	}
}


