﻿startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		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", "");
				}
			}
		}
	}
}


function album(mypage) {
	//var winl = (screen.width - 428) / 2;
	//var wint = (screen.height - 360) / 2;
	winprops = 'height='+405+',width='+481+',scrollbars=no';
	win = window.open(mypage, 'album', winprops);
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}

window.onload= function(){
	startList();
	
}