var timer; function show() { document.getElementById("menuSub_angels").className="menuSub show"; document.getElementById("btn_angels").className = "main mainhover" } function hide() { document.getElementById("menuSub_angels").className="menuSub hide"; document.getElementById("btn_angels").className = "main" } function requesthide() { timer = setTimeout("hide()",50); } function cancelhide() { clearTimeout(timer); } var timer2; function show2() { document.getElementById("menuSub_products").className="menuSub show"; document.getElementById("btn_product").className = "main mainhover" } function hide2() { document.getElementById("menuSub_products").className="menuSub hide"; document.getElementById("btn_product").className = "main" } function requesthide2() { timer2 = setTimeout("hide2()",50); } function cancelhide2() { clearTimeout(timer2); } var timer3; function show3() { document.getElementById("menuSub_news").className="menuSub show"; document.getElementById("btn_news").className = "main mainhover" } function hide3() { document.getElementById("menuSub_news").className="menuSub hide"; document.getElementById("btn_news").className = "main" } function requesthide3() { timer3 = setTimeout("hide3()",50); } function cancelhide3() { clearTimeout(timer3); }