// document.observe("dom:loaded", function() {
// 	if (document.all&&document.getElementById) {  /* IE5 or greater? */
// 		navRoot = $('nav');
// 		var navChildren = navRoot.childElements();
// 		
// 		for (i=0; i<navChildren.length; i++) {
// 			node = navChildren[i];
// 			if (node.childElements().length >= 2)
// 			{
// 				if (node.nodeName=="LI") {
// 					node.onmouseover=function() {
// 						this.className+=" over";
// 					}
// 					node.onmouseout=function() {
// 						this.className=this.className.replace(" over", "");
// 					}
// 				} //if
// 			}
// 		} //for
// 	} //if
// });





document.observe("dom:loaded", function() {
	if (document.all&&document.getElementById) {  /* IE5 or greater */
		var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" over";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" over\\b"), "");
			}
		}
	}
});
