 

function SlideFoto2() {
$(".fotoSlideY:first").show("slow").delay(1000).hide("slow",function(){
$(this).next(".fotoSlideY").show("slow").delay(1000).hide("slow",function(){
$(this).next(".fotoSlideY").show("slow").delay(1000).hide("slow",function(){
return SlideFoto2();
});
});
});
$(".LiA").mouseover(function(){
$(this).find("ul.UlB").fadeIn("slow");
});

$("li.LiA").mouseleave(function(){
$(this).find("ul.UlB").fadeOut("fast");
});
}





 
$(document).ready(function() {		
	//Load the slideshow

    SlideFoto2();

	
});
