(function($){ //------------------------------------------------------------------------ // INSERT SHADOW UNDER IMAGES BY CLASS //------------------------------------------------------------------------ $.fn.imgShadow = function (options) { var defaults = { shadow: 1 }; var option = $.extend({}, defaults, options); $(this).each(function() { var $this = $(this), style = $this.attr('style'); $this.attr('style',''); $this.wrap('
'); $('