<!--
// author     "Mr.Moo"
// copyright  "のがりゅう"
// reply-to   "nogaryu@nifty.com"
// build      "2001.03.01"
// references "JavaScriptHANDBOOK applied compilation/SOFT BANK Publishing"
//


//　メニューアイコンにマウスが重なった
function imenuonmouover(VimgId, VcharImg){
        if(document.images){

                if(document.all){
                        document.images[VimgId].src = VcharImg;
                }               
                else if(document.layers){
                        document.images[VimgId].src = VcharImg;
                }
                else if(document.getElementById){
                        document.images[VimgId].src = VcharImg;
                }
        }
}


//　メニューアイコンからマウスが離れた
function imenuonmouout(UimgId, UcharImg){
        if(document.images){

                if(document.all){
                        document.images[UimgId].src = UcharImg;
                }
                else if(document.layers){
                        document.images[UimgId].src = UcharImg;
                }
                else if(document.getElementById){
                        document.images[UimgId].src = UcharImg;
                }
        }
}


//-->
