function initDropDown(){

	navRoot=$("primary").childNodes[0];
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				Element.addClassName(this,'over');
			}
			node.onmouseout=function() {
				Element.removeClassName(this,'over');
			}
		}
	}

}

Event.observe(window, 'load', initDropDown, false);

