// JavaScript Document

startList = function() {
	if (document.all&&document.getElementById) {
		var navRoot;
		for (i=0; i<document.all.length; i++) {
			if(document.all[i].className == 'actionnav' || document.all[i].className == 'actions_header_vis' ){
				navRoot = document.all[i];
				for (a=0; a<navRoot.childNodes.length; a++) {
					node = navRoot.childNodes[a];
					if (node.nodeName=="LI") {
						node.onmouseover=function(){this.className+=" arrowover";}
						node.onmouseout=function(){this.className=this.className.replace(" arrowover", "");}
				   }
				}
			}
		}
	}
}


addOnLoadHandler(startList);

