function fixWidth()
{
	if (screen.width < 1024)
		document.getElementById("container").style.width = "780px";
}

function fixMenu(root, el, nm, nm_over)
{
	if (document.all && document.getElementById)
	{
		sbRoot = document.getElementById(root);
		for (i = 0; i < sbRoot.childNodes.length; i++)
		{
			node = sbRoot.childNodes[i];
			if ((el ? node.tagName : node.className) == nm)
			{
				node.onmouseover = function()
				{
					this.className += " " + nm_over;
				}
				node.onmouseout=function()
				{
					this.className = this.className.replace(" " + nm_over, "");
				}
			}
		}
	}
}
					
var startList = function()
{
	fixWidth();
	fixMenu("nav_ul", true, "LI", "hover");
}

if (window.attachEvent)
{
	window.attachEvent("onload", startList);
}

