function show_image(image,file_path)
	{
		MeinFenster = window.open("bildergalerie.php?image=" + image + "&file_path=" + file_path, "Galerie","width=680,height=750,scrollbars=yes");
		MeinFenster.focus();
	}
	
	
startList = function() {
	if (document.all&&document.getElementById) {
		//alert("if erfüllt");
		navRoot = document.getElementById("img_menu");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
					if (node.nodeName=="DIV") {
						
						node.onmouseover=function() {
						this.className+="items_active";
						  }
						  
						node.onmouseout=function() {
						  this.className=this.className.replace(" items_active", "items");
					   }
				    }
	  		}	
	 }
}
//window.onload=startList;


