jQuery(function() {

var curPhoto = 1;

setTimeout(function(){ goNextPic(); }, 3000);

goNextPic = function (){
	jQuery("#fotobar .foto"+curPhoto).animate({ opacity: 0 }, 1500);
	curPhoto++;
	if(curPhoto == 6) { curPhoto = 1; }
	jQuery("#fotobar .foto"+curPhoto).animate({ opacity: 1 }, 1500, function() { setTimeout(function(){ goNextPic(); }, 5000); });
}

});
