startList = function() {
	if (document.all && document.getElementById) {
		node = document.getElementById("navlink_services");
		node.onmouseover=function() {
			this.className+=" over";
		}
		node.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	}
}
	
	
window.onload=startList;
