// JavaScript Document
var xmlHttp
function GetXmlHttp() {
	var xmlhttp = false;
	if (window.XMLHttpRequest) xmlhttp = new XMLHttpRequest()
	else if (window.ActiveXObject) {
		// code for IE
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")
		} catch (e) {
			try {
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
			} catch (E) {
				xmlhttp=false
			}
		}
	}
	return xmlhttp;
}

startList = function() {
	var navRoot = $('#nav > li').each(function() {
		this.onmouseover=function() {
			this.className+=" over";
		}
		this.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	})
}
$(window).load(startList)

