$(document).ready(function(){
	// hovers
	$(".galleria img, .galleria_scroll img, .scroll_nappi").hover(
		function(){
			$(this).animate({opacity: 1.0}, "normal");
		},
		function(){
			$(this).animate({opacity: 0.7}, "normal");
		}
	);

	$("#cycle").scrollable({
		size: 6,
		next: ".next",
		prev: ".prev",
		loop: true
	});


});
