(function($){ $(function(){ //document.oncontextmenu = function(){ //alert("Welcom to Pintbox"); //return false; //} $(document).ready(function(){ var img_width; img_width = $("#post_area img").width(); if(img_width > 710){ $("#post_area img").css("width","710px"); } //$("input[name$='secret[]']").attr("readonly",true); $("input[name$='secret[]']").attr("checked", true); return false; }); $('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"}); }, function(){ $(this).children("ul").slideUp({duration: 200, easing: "swing", complete: "callback"}); $("img", this).attr('src', $("img", this).attr('src').replace('_on', '_off')); }); }); })(jQuery);