jQuery(document).ready(function() {
    jQuery('#axel_fast_link').jcarousel({
        auto: 2,
        wrap: 'circular',
		scroll: 1,
        initCallback: axel_carousel_initCallback
    });
    jQuery('#axel_fast_link li').hover(function(){
			jQuery(this).find('div.carouselHover').fadeIn(200);
			}, function() {
			jQuery(this).find('div.carouselHover').fadeOut(200);
			});
    jQuery('#esplora_link').hover(function(){
			jQuery('div#esplora_hover').fadeIn(200);
			jQuery('div#index_links_main_esplora').fadeOut(200);
			},function(){jQuery('div#esplora_hover').fadeOut(200);
			jQuery('div#index_links_main_esplora').fadeIn(200);

			});
    jQuery('#corsi_link').hover(function(){
			jQuery('div#corsi_hover').fadeIn(200);
			jQuery('div#index_links_main_corsi').fadeOut(200);
			},function(){jQuery('div#corsi_hover').fadeOut(200);
			jQuery('div#index_links_main_corsi').fadeIn(200);
			});
    jQuery('#fun_link').hover(function(){
			jQuery('div#fun_hover').fadeIn(200);
			jQuery('div#index_links_main_fun').fadeOut(200);
			},function(){jQuery('div#fun_hover').fadeOut(200);
			jQuery('div#index_links_main_fun').fadeIn(200);
			});
    jQuery('#eventi_link').hover(function(){
			jQuery('div#eventi_hover').fadeIn(200);
			jQuery('div#index_links_main_eventi').fadeOut(200);
			},function(){jQuery('div#eventi_hover').fadeOut(200);
			jQuery('div#index_links_main_eventi').fadeIn(200);
			});
});
