status='Apotheke aus Leidenschaft';

submenueHover = function() {
	var sfEls = document.getElementById("m1").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" submenuehover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" submenuehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", submenueHover);

function popup()
{ 
open("extras/popup.htm","popup","width=200,height=200,menubar=no,scrollbars=no");
}
