var marginGalleria=0;
var temporizzazioneId;
var speed=3;

	$(document).ready(
		function(){
			$("#galleriaLeft").fadeTo("slow", 0.1);
		}
	);

function scrollToRight(){
	//alert(marginGalleria+">= -"+(document.getElementById(scrollId).style.width.replace("px", "")+"-"+document.documentElement.clientWidth));
	//if (marginGalleria>=-(document.getElementById(scrollId).style.width.replace("px", "")-document.documentElement.clientWidth)){
	//alert($("#galleria").width());
	if (marginGalleria>=-($("#listaFoto").width()-$("#galleria").width())+13){
		marginGalleria-=speed;
		$("#listaFoto").css('marginLeft', marginGalleria);
	}
	else {
		window.clearInterval(temporizzazioneId);
		//alert("fine corsa right");
		$("#galleriaRight").fadeTo("slow", 0.1);
		//marginGalleria=-34;
		//setMarginLeft(scrollId, marginGalleria);
		//$("#listaFoto").css('marginLeft', marginGalleria);
		//stopTemporizza();
	}
	return false;
}

function scrollToLeft(){
	if (marginGalleria<0){
		marginGalleria+=speed;
		$("#listaFoto").css('marginLeft', marginGalleria);
	}
	else {
		window.clearInterval(temporizzazioneId);
		//alert("fine corsa left");
		$("#galleriaLeft").fadeTo("slow", 0.1);
		//marginGalleria=-($("#listaFoto").width()-531)+34;
		//$("#listaFoto").css('marginLeft', marginGalleria);
		//stopTemporizza();
	}
	return false;
}

function temporizza(direction){
	window.clearInterval(temporizzazioneId);
	$("#galleriaLeft").fadeTo("slow", 1);
	$("#galleriaRight").fadeTo("slow", 1);
	//alert("visualizza frecce");
	if (direction)
		temporizzazioneId=window.setInterval("scrollToLeft()", 10);
	else
		temporizzazioneId=window.setInterval("scrollToRight()", 10);
	return false;
}

function temporizzaStop(){
	window.clearInterval(temporizzazioneId);
}







