function initPage()
{
	var navRoot = document.getElementById("nav");
	var _body = document.body;
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		lis[i].onmouseover = function()
		{
			this.className += " hover";
			if (this.childNodes.length > 1) _body.className += " hover";
		}
		lis[i].onmouseout = function()
		{
			this.className = this.className.replace("hover","");
			this.className = this.className.replace("hover","");
			_body.className = _body.className.replace("hover","");
		}
	}
	
	pic1= new Image(); 
	pic1.src="http://static.briansolis.com/wp-content/themes/pr20/images/bg-body.gif"; 
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);

