/*!
 * Simplest jQuery Slideshow Plugin – http://github.com/mathiasbynens/Simplest-jQuery-Slideshow
 * Script by Jonathan Snook – http://snook.ca/archives/javascript/simplest-jquery-slideshow
 * Pluginified by Mathias Bynens – http://mathiasbynens.be/
 */
(function(a){a.fn.slideshow=function(c){var b={timeout:3000,speed:400};if(c){a.extend(b,c)}this.each(function(){var d=a(this);d.children().eq(0).appendTo(d).show();setInterval(function(){d.children().eq(0).hide().appendTo(d).fadeIn(b.speed)},b.timeout)});return this}})(jQuery);