/*
 * jQuery Wordpress Gallery Stub
 * Version 1.0
 * rocket54.de
 *
 * Hides all images of a Wordpress gallery except the first one. 
 *
 * Copyright (c) 2010 Olaf Schmidtmann
 * Feel free to use.
*/

(function($){$.fn.extend({gallerystub:function(options){var defaults={displayItems:1};var options=$.extend(defaults,options);return this.each(function(){$(".gallery .gallery-item:gt("+(options['displayItems']-1)+")").hide();});}});})(jQuery);
