(function($){ $(function(){ $(document).ready(function(){ var img_width; img_width = $("#post_area img").width(); if(img_width > 710){ $("#post_area img").css("width","710px"); } return false; }); $('div.alpha_01').hover(function(){ $("img",this).animate({opacity: "1.0"}, 100); $(".banner_text", this).show(); }, function(){ $("img", this).animate({opacity: "0.5"}, 100); $(".banner_text", this).hide(); }); $('li.menu_sub').hover(function(){ $("img", this).attr('src', $("img", this).attr('src').replace('_off', '_on')); $(this).children("ul").slideDown({duration: 200, easing: "swing", complete: "callback"}).show(); }, function(){ $(this).children("ul").slideUp(200).hide(); $("img", this).attr('src', $("img", this).attr('src').replace('_on', '_off')); }); $('li.bg_s_m').hover(function(){ $("img", this).attr('src', $("img", this).attr('src').replace('_off', '_on')); }, function(){ $("img", this).attr('src', $("img", this).attr('src').replace('_on', '_off')); }); }); })(jQuery);