
function slideshow_automatic(i){ 
	 
	   if (i==1)  $('#foto #f4').fadeOut('slow');
	   else $('#foto #f'+(i-1)).fadeOut('slow');
		
	   $('#foto #f'+i).fadeIn('slow');
	   
	   i++;
	   if (i==5) i=1;
	   setTimeout("slideshow_automatic("+i+")",5000);

}
