function slideshow(){
	//alert("asdasd");
	$(".cornice .item").hide();
	$(".cornice .item:eq(0)").show();
	var tot = $(".cornice .item").size();
	setTimeout(function(){startGallery(1,tot)}, 2000);
	}
	
	
function startGallery(i, tot) {
	$(".cornice .item").hide();
	$(".cornice .item:eq("+i+")").fadeIn();
	i = i+1;
	if (i<tot) {
		setTimeout(function(){ startGallery(i, tot) }, 2000);
	} else {
		setTimeout(function(){ startGallery(0, tot) }, 2000);
	}
}
