        ////////////////////////// MenuAction ///////////////////////////

        function mnubtn_over(btnObj) {
            if (btnObj.firstChild!=null)
                btnObj.firstChild.style.marginTop = "-2px";
        }
        function mnubtn_out(event, btnObj) {
            if (btnObj.firstChild != null)
                btnObj.firstChild.style.marginTop = "0px";
        }
        ////////////////////////// END MenuAction ///////////////////////////
