// JavaScript Document// onmouseで画像表示 夫か猫か$(function(){    $("#menu_otto_container a").hover(function(){        var $next = $(this);        $("#menu_otto_container img.target1").fadeTo("fast", 0, function(){            $(this).attr({src:$next.attr("name")})                .next().end().fadeTo("slow", 1.0);        });        return false;    },function(){var $next = $(this);$("#menu_otto_container img.target1").fadeTo("slow", 0);}) });// onmouseで画像表示 夫か猫か$(function(){    $("#menu_aruhi_container a").hover(function(){        var $next = $(this);        $("#menu_aruhi_container img.target2").fadeTo("fast", 0, function(){            $(this).attr({src:$next.attr("name")})                .next().end().fadeTo("slow", 1.0);        });        return false;    },function(){var $next = $(this);$("#menu_aruhi_container img.target2").fadeTo("slow", 0);}) });
