$(document).ready(function(){
	// hovers
	$(".galleria img, .galleria_scroll img, .scroll_nappi").hover(
		function(){
			$(this).stop().animate({opacity: 1.0}, "normal");
			$(this).css("background", "#aaaaaa");
		},
		function(){
			$(this).stop().animate({opacity: 0.7}, "normal");
			$(this).css("background", "transparent");
		}
	);
//
//	$("#slider").cycle({
//		fx:		'scrollHorz',
//		timeout: 0,
//		cleartype: true,
//		cleartypeNoBg: true,
//		prev:	'#nappi_left',
//		next:	'#nappi_right'
//	});

	// frontpage nav
//	$('#nappi_right').click(function(){
//		alert("right");
//	});
//
//	$('#nappi_left').click(function(){
//		alert("left");
//	});

});
