/*!
 * Simplest jQuery Slideshow Plugin v1.0
 * @link http://github.com/mathiasbynens/Simplest-jQuery-Slideshow
 * @author Mathias Bynens <http://mathiasbynens.be/>
 */
(function(a){a.fn.slideshow=function(b){b=a.extend({timeout:3e3,speed:400},b);return this.each(function(){var c=a(this);c.children().eq(0).appendTo(c).show();setInterval(function(){c.children().eq(0).hide().appendTo(c).fadeIn(b.speed)},b.timeout)})}})(jQuery);
