function pd(x) {
	window.open("produktdetail.php?artnr="+x,"pd","height=320,width=500,location=no,menubar=no,resizeable=no,toolbar=no")
}

function gd(filename,width,height)
{
	gwin = window.open(filename,"Grafik","height="+height+",width="+width+",location=no,menubar=no,toolbar=no")
	gwin.resizeTo(width,height);
	gwin.focus;
}

function schliessen() {
	close();
}

function kontaktSenden() {
	doc = document.kontakt;
	if(doc.name.value!="" && doc.vorname.value!="" && doc.email.value!="") {
		return true;
	} else {
		alert("Bitte füllen Sie alle mit * gekennzeichneten Felder aus!");
		return false;
	}
}

jQuery().ready(function(){
	//set navigation
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("subnavi");
		if(navRoot!=null) {
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
});
