
jQuery.fn.slideShow = function(timeOut) {
  var $elem = this;
  this.children(':gt(0)').hide();
  setInterval(function() {
   $elem.children().eq(0).fadeOut(1000).next().fadeIn(1000).end().appendTo($elem);
  }, timeOut || 4500);
 };


