$(document).ready(function() {
	jQuery("#mycarousel").jcarousel({
        itemVisible: 6,
        itemScroll: 2
    });
	$("body#prodotti_dettagli #schedaProdotto a.thickbox").hover(function(){			
			$(this).css('opacity',0.5);
		},
		function(){
			$(this).css('opacity',1);
	});
	$("#mycarousel li a").hover(function(){			
			$(this).css('opacity',0.5);
		},
		function(){
			$(this).css('opacity',1);
	});
});


