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 init()
{
	startList();
	init_birthday();
}

window.onload=init;

function popWindow(url, width, height, name, scrollbars, resize){
	if (!resize) resize = false;
	if (!scrollbars) scrollbars = false;
	if (!width) width = 500;
	if (!height) height = 500;
 	var realW = (width)/2;
	var realH = (height)/2;
 	
 	if (document.all){		
        	var xMax = screen.width, yMax = screen.height;
    	}else if (document.layers){       
        	var xMax = screen.width, yMax = screen.height;
    	}else if (document.getElementById){
		var xMax = screen.width, yMax = screen.height;
	}else{
		var xMax = 800, yMax=600;
	}
	
	var xOffset = ((xMax)/2) - realW, yOffset = (((yMax)/2)) - realH; 
	
	if (yMax==600){
		yOffset = 0;
	}	
	
	if (scrollbars == true){
		var options = "directories=no,status=no,location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=no" + ",screenX=" + xOffset + ",screenY=" + yOffset + ",top=" + yOffset + ",left=" + xOffset + ",width=" + width + ",height=" + height;
	}else if(resize == true){
		var options = "directories=no,status=no,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=yes" + ",screenX=" + xOffset + ",screenY=" + yOffset + ",top=" + yOffset + ",left=" + xOffset + ",width=" + width + ",height=" + height;
	}else{
		var options = "directories=no,status=no,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=no" + ",screenX=" + xOffset + ",screenY=" + yOffset + ",top=" + yOffset + ",left=" + xOffset + ",width=" + width + ",height=" + height;
	}
	
	
}
