//js per scroller foto
(function($) {
	$(function() {
		$("#scroller").simplyScroll({									
			className: 'simply-scroll',
			frameRate: 24,
			speed: 1,
			horizontal: false,
			autoMode: 'loop',// 'loop' or 'bounce' (disables buttons) 
			pauseOnHover: true,
			startOnLoad: false,
			flickrFeed: '',
			jsonSource: '',
			jsonImgWidth: 290,
			jsonImgHeight: 200 
		});		
		

		//mouse over
		$('#scroller li a').mouseover(function() {
			$('#scroller li .text-foto-'+ this.id ).hide();
		});
		
		//mouse out
		$('#scroller li a').mouseout(function() {
			$('#scroller li .text-foto-'+ this.id ).show();
		});
	
	});
})(jQuery);
