function InitializeMenu()
{
	if (document.all && document.getElementById)
	{
		var navRoot = document.getElementById("navlist");
		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 resize_iframe()
{
    try
    { 
        document.getElementById("sizeframe").height=null; // required for Moz bug, value can be "", null, or integer
        document.getElementById("sizeframe").height=window.frames["sizeframe"].document.body.scrollHeight+10;
    }
    catch(err)
    {
        
    }
}
