/* FIX NOT ANIMATED GIF (Disable image small size optimization for GIFs) */ function gif_fix() { jQuery('img[src*=".gif"]:not([width=""])').each(function() { var src = jQuery(this).attr("src"); var w = jQuery(this).attr("width"); if (typeof src !== "undefined" && typeof w !== "undefined") { src = src.substring(0, src.indexOf(".gif") + 4); jQuery(this).attr("src", src); } }); } jQuery(function() { if (typeof __gif_fix === "undefined") { __gif_fix = true; gif_fix(); } });