// JavaScript Document
  (function($) {
    $.fn.simplestSlideShow = function(settings) {
      var config = {
        'timeOut': 5000,
        'speed': 'normal'
      };
      if (settings) $.extend(config, settings);
      this.each(function() {
        var $elem = $(this);
        $elem.children(':gt(0)').hide();
        setInterval(function() {
          $elem.children().eq(0).fadeOut(config['speed'])
        .next().fadeIn(config['speed'])
        .end().appendTo($elem);
        }, config['timeOut']);
      });
      return this;
    };
  })(jQuery);


  $(function(){
    $(".fadein").simplestSlideShow({ 'timeOut': 4000, 'speed': 1000 });
  });

