
(function($){var opts;var id=0;$.fn.slideshow=function(options){var defaults={interval:5000,switchtime:800};opts=$.extend(defaults,options);return $(this).each(function(){var $self=this;$.centerIt($self);setInterval(function(){$.nextSlide($self)},opts.interval)})};$.extend({nextSlide:function(o){var $self=$(o);id++;if($self.find('li').length==0)return;if($self.find('li:eq('+id+')').length==0){id=0}$self.stop().scrollTo($self.find('li:eq('+id+')'),opts.switchtime,{easing:'jswing'})},centerIt:function(o){var $self=$(o);$.scrollTo.defaults.axis='x';var top=($self.height()-$self.find('div.image').height())/2;$self.find('div.image').css('margin-top',top);var top=($self.height()-$self.find('div.overlay').height())/2;$self.find('div.overlay').css('margin-top',top);var top=($self.height()-$self.find('div.text').height())/2;$self.find('div.text').css('margin-top',top)}})})(jQuery);