// JavaScript Document
var InitScroll = 0;
function scrollNext(){
	//alert($('ContentListImages').getSize().scrollSize.x);
	var toScroll = InitScroll + $('ListImages').getSize().size.x;
	var maxScroll = $('ListImages').getSize().scrollSize.x - $('ListImages').getSize().size.x;
	if (toScroll > maxScroll){
		toScroll = maxScroll;
	}
	InitScroll = toScroll;
	//$('demo-wrapper').scrollTo(toScroll);
	var scroll = new Fx.Scroll('ListImages', {
		wait: false,
		duration: 1500,
		transition: Fx.Transitions.Cubic.easeInOut
		//transition: Fx.Transitions.linear
	});
	scroll.scrollTo(toScroll);
}
function scrollPrev(){
	//alert($('ContentListImages').getSize().size.x);
	var toScroll = InitScroll - $('ListImages').getSize().size.x;
	if(toScroll < 0){toScroll = 0};
	InitScroll = toScroll;
	var scroll = new Fx.Scroll('ListImages', {
		wait: false,
		duration: 2500,
		transition: Fx.Transitions.Cubic.easeInOut
	});
	scroll.scrollTo(toScroll);
}

function printPhoto(url) {
	//alert("Stampo..."+"["+url+"]");
	MM_openBrWindow('/stampaphoto.asp?url='+url,'','scrollbars=yes,width=800,height=600');
}
