// show Menu function menuOver(id) { var idStartWith = "js_"; var menus=document.getElementById("nav").getElementsByTagName("UL"); for(var i=0;i -1){ document.getElementById(menu_id).style.display="none"; document.getElementById(menu_id).parentNode.firstChild.style.cssText=""; } } if(document.getElementById(id).childNodes.length > 2){ document.getElementById(id).style.display="block"; } if (typeof menuTimeout != 'undefined') clearTimeout(menuTimeout); document.getElementById(id).parentNode.firstChild.style.cssText="background: #c44303 !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef5001', endColorstr='#c44303'); background: -webkit-gradient(linear, left top, left bottom, from(#ef5001), to(#c44303)) !important; background: -moz-linear-gradient(top, #ef5001, #c44303) !important; color: #fff !important; text-shadow: 0 1px 1px rgba(0, 0, 0, .3);"; } // hide Menu function menuHide(id) { document.getElementById(id).style.display="none"; document.getElementById(id).parentNode.firstChild.style.cssText=""; } // method of the Menu function menuOut(id) { menuTimeout = setTimeout("menuHide('"+id+"')", 800); }