$(document).ready(function() {
  run_gallery();
});

function run_gallery()
{
  var old = $("#foto").children("img").attr("id");
  var number = gallery.length;
  if(number == 1){
    return false;
  }
  next = old.substring(4); next++; next = (next % number);

  var content = $("#foto").html();
  var newcontent = '<img class="foto" src="'+gallerypath+gallery[next]+'" id="img-'+next+'" />'+content;
  $("#foto").html(newcontent);
  $("#"+old).delay(gallerytimeout).fadeOut(galleryfade, function(){
    $(this).remove();
    run_gallery();
  });
}
