$(document).ready(function(){
	
	jQuery(window).load(function(){
		jQuery(".loader2").fadeOut(1000);
		jQuery("#news").fadeIn(1000);
	});
	
    jQuery("li.linguistico").bind("mouseenter",function(){
      jQuery("div.linguistico").fadeIn('slow');
    }).bind("mouseleave",function(){
      jQuery("div.linguistico").fadeOut('slow');
    });
	
	jQuery("li.artistico").bind("mouseenter",function(){
      jQuery("div.artistico").fadeIn('slow');
    }).bind("mouseleave",function(){
      jQuery("div.artistico").fadeOut('slow');
    });
	
	jQuery("li.aeronautico").bind("mouseenter",function(){
      jQuery("div.aeronautico").fadeIn('slow');
    }).bind("mouseleave",function(){
      jQuery("div.aeronautico").fadeOut('slow');
    });
	
	jQuery("li.alberghiero").bind("mouseenter",function(){
      jQuery("div.alberghiero").fadeIn('slow');
    }).bind("mouseleave",function(){
      jQuery("div.alberghiero").fadeOut('slow');
    });
    
    jQuery("div.csc_village1").bind("mouseenter",function(){
      jQuery("div.csc_village").show(50);
    }).bind("mouseleave",function(){
      jQuery("div.csc_village").fadeOut(500);
    });
		
});