/*
window.onload = function () {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu_0");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI" || node.nodeName=="li") {
				node.onmouseover=function() {
					this.className+=" hover";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" hover", "");
				}
			}
		}
	}
}
*/
$(function() {
  $('.menu_0 li').hover(function(){
    $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');
  });
});
