function initPage()
{
	var ul = document.getElementById("nav");
	if (ul)
	{
			var nodes = ul.getElementsByTagName("li");
			for (var i = 0; i < nodes.length; i++)
			{
				nodes[i].onmouseover = function () 
				{
					if (this.className.indexOf("hover" == -1))
					this.className += " hover";
				}
				nodes[i].onmouseout = function ()
				{
					this.className = this.className.replace("hover", "");
				}
			}
		}

		var _submit = document.getElementById("go-1");
	if (_submit){
		_submit.onmouseover = function(){
			this.className += " hover";
		}
		_submit.onmouseout = function(){
			this.className = this.className.replace(new RegExp("hover"),"");
		}
	}
	var _submit2 = document.getElementById("go-2");
	if (_submit2){
		_submit2.onmouseover = function(){
			this.className += " hover";
		}
		_submit2.onmouseout = function(){
			this.className = this.className.replace(new RegExp("hover"),"");
		}
	}
	var _submit3 = document.getElementById("go-3");
	if (_submit3){
		_submit3.onmouseover = function(){
			this.className += " hover";
		}
		_submit3.onmouseout = function(){
			this.className = this.className.replace(new RegExp("hover"),"");
		}
	}
}
if (window.attachEvent)
	window.attachEvent("onload", initPage);