$(document).ready(function () {
	// Animazione
	runIt();
});
function initMenu() {
	$("#map area").each(function() {
		var c = $(this).attr("rel");
		if (!$("#menu").hasClass(c)) {
			$(this).mouseenter(function(event) {
				event.preventDefault();
				$("#menu").removeClass().addClass(c);
			});
			$(this).mouseleave(function(event) {
				event.preventDefault();
				$("#menu").removeClass().addClass($("#menu").attr("rel"));
			});
		}
	});
}
function runIt() {
	$("#logo div").fadeIn(2000, function() {
		$("#logo h1").fadeIn(1000);
	});
	$("#background").delay(3500).effect('slide', {direction: 'down'}, 2000, function() {
		$("#welcome").fadeIn(2000);
		$("#corsi").delay(1500).fadeIn(2000);
		$("#freccia").delay(1500).fadeIn(2000, function() {
			$("#menu").fadeIn('slow', function() {
				initMenu();
			});
			$("#lingue").fadeIn('slow', function() {
				$("#fiere").effect('slide', {direction: 'right'});
			});
			$("#footer").fadeIn('slow');
			
		});
	});
}

