// Hide and Fade script
// Hide project images and fade them in in a sequence
// Thanks to superchu @ http://www.grafisktforum.org/

(function(a){a.fn.fadeInItems=function(b){b=a.extend({element:"",speed:1000,callback:false},b);return this.each(function(){var d=a(this).find(b.element).hide();var e=0;var c=function(){d.eq(e++).fadeIn(b.speed,function(){if(e<d.length){c()}else{if(e>=d.length&&b.callback){b.callback()}}})};c()})}})(jQuery);
