// JavaScript Document
$(function() {
	
	$("#FCimage").cycle({ 
		fx:     'fade', 
		speed:   200, 
		timeout: 3000, 
		//next:   '#FCimage', 
		pause:   1 
	});
	
	$("#FCprodotti").find("ul div").each(function() {
	    //$(this).blend(); 
		$(this).hover(function() {
			$(this).find('a').css('color', '#FFFFFF');
			var numero = $(this).attr("cod");
			//alert(numero);
			$("#FCimage").cycle(parseInt(numero));
			//return true;
		}, function () {
			$(this).find('a').css('color', '#777777');
		});
	});
	
	$('.FCslide').hover(function(){
		$(".boxcaption", this).stop().animate({top:'300px'},{queue:false,duration:200});
	}, function() {
    	$(".boxcaption", this).stop().animate({top:'340px'},{queue:false,duration:100});
	});
	
});