window.onload = function(){
	var menu = document.getElementById("menu")
	if(menu){
		var liSet = menu.getElementsByTagName('LI');				
		for(var i = 0; i < liSet.length; i++){										
			liSet[i].onmouseover = function(){
				this.oldClassName = this.className;
				if(this.oldClassName == "white")
					this.className = this.oldClassName + "over";
				else
					this.className = this.oldClassName + " over";}				
			liSet[i].onmouseout = function(){
				this.className = this.oldClassName;}}}}
				
popup = function(imgsrc){							
	var showimg = window.open("", "foto", "toolbar=no, location=no, menubar=no, scrollbars=no, status=no, top=10, left=10, width=100, height=100");
	showimg.focus();
	showimg.document.writeln("<html><head><title>Origineel</title>");
	showimg.document.writeln("<script>function resize(){window.resizeTo(document.images[0].width, document.images[0].height + 50)}</sc"+"ript>");
	showimg.document.writeln("</head><body style=\"margin: 0px; cursor: pointer; overflow: hidden\" onload=\"resize()\">");
	showimg.document.writeln("<img src=\"/upload/" + imgsrc + "\" onclick=\"window.close()\" title=\"Klik om venster te sluiten.\">");
	showimg.document.writeln("</body></html>");
	showimg.document.close();		
		
	return false;}
