//サブナビゲーション $(function(){ $(".subNav li:not(.on)").hover( function(){ $(this).stop().animate({ "background-position-x" : "0px" }, 300); $("span",this).css({"color":"#990000","border-right":"3px solid #990000"}); }, function(){ $(this).stop().animate({ "background-position-x" : "250px" }, 500); $("span",this).css({"color":"#D0EBF2","border-right":"3px solid #D0EBF2"}); } ); }); //dropDown function mainmenu(){ $(" #down li").hover(function(){ $(this).find('ul:first').css({visibility: "visible",display: "none"}).show(300); },function(){ $(this).find('ul:first').css({visibility: "hidden"}); }); } $(document).ready(function(){ mainmenu(); }); //colorBox $(document).ready(function(){ $(".gallery").colorbox({opacity:"0.4", speed:"600"}); $(".iframe").colorbox({iframe:true, width:640, height:440, opacity:"0.8"}); $(".iframePad").colorbox({iframe:true, width:1193, height:632, opacity:"0.8"}); });