jQuery(document).ready(function() {

jQuery('input[type="button"]').css('cursor','pointer');
jQuery('input[type="submit"]').css('cursor','pointer');

jQuery('#Slider').cycle({
	fx:     'fade',
	speed:   2000,
	timeout: 5000, 
    next:   '#next', 
    prev:   '#prev',
	before: Scrolla
});

//var intId = setInterval(Scrolla,4000);
function Scrolla(){
	var my_scheda = jQuery(this).attr('id');
	jQuery("#ContSchede div").animate({
		height: '0px'
	}, 1000, function() {
		// Animation complete.
		  for(var i = 1; i<6; i++){
			  if (i!=my_scheda) {
				  jQuery("#scheda"+i+" img").css('display','none');
			  } else {
				  jQuery("#scheda"+i+" img").css('display','block');
			  }
		  }
	  });
	
	
	jQuery("#scheda"+my_scheda).animate({
		height: '171px'
	}, 1000, function() {
		// Animation complete.
	});	
	//alert( jQuery(this).attr('id') );
}

jQuery("#contenuto_10842").hide();
jQuery("#contenuto_10843").click(function() {
	jQuery("#contenuto_10842").slideToggle("slow");
});
jQuery("#contenuto_10844").click(function() {
	jQuery("#contenuto_10842").slideToggle("slow");
});

jQuery(".ElencoPress:even").css("margin-left","0px");

	
});
