 
function SlideFoto() {
$(".fotoSlide:first").fadeIn("slow").delay(3000).hide("slow",function(){
$(this).next(".fotoSlide").fadeIn("slow").animate({"left": "+=50px",}, "slow").delay(3000).animate({"left": "-=50px",}, "slow").fadeOut("slow",function(){
$(this).next(".fotoSlide").fadeIn("slow").delay(3000).hide("slow",function(){
return SlideFoto();
});
});
});
}
 
$(document).ready(function() {		
	//Load the slideshow
	SlideFoto();

});
