var i = 0;
var first_run = true
slideShow = function(){
  now = $('div#images').children('div.current')
  now.fadeOut('slow');
  now.removeClass('current');
  if(now.next('div').length == '0')
  {
    next = $('div#images').find(':nth-child(1)')
  }
  else
  {
    next = now.next('div.image')
  }
  next.fadeIn('slow');
  next.addClass('current')
}

$(document).ready(function() {
  setInterval(slideShow, 3000);
});
