(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('
'); $('
').insertAfter(this); }); }; $(window).load(function() { $('img.shadow1').imgShadow({shadow:1}); $('img.shadow2').imgShadow({shadow:2}); $('img.shadow3').imgShadow({shadow:3}); $('img.shadow4').imgShadow({shadow:4}); $('img.shadow5').imgShadow({shadow:5}); $('img.shadow6').imgShadow({shadow:6}); $('img.shadow7').imgShadow({shadow:7}); }); })(jQuery);