function slideShow() {

	// imposta l'opacità a 0 per tutte le immagini
	$('#slider > div').css({opacity: 0.0});
	
	// mostra la prima immagine
	$('#slider > div:first').css({opacity: 1.0});
	
	//chiama la funzione gallery per mandare in loop lo slider
	setInterval('gallery()',5000);
	
}

function gallery() {
	
	// prendi la prima immagine se non è settata una classe .show
	var current = ($('#slider div.show')?  $('#slider div.show') : $('#slider div:first'));

	// prendi l'immagine successiva in base alla posizione attuale
	var next = ((current.next().length) ? current.next() : $('#slider div:first'));
	
	// setta i dati per eseguire il fadeIn della prossima immagine
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 2200);

	// esegui un fadeOut deell'immagine corrente
	current.animate({opacity: 0.0}, 2200)
	.removeClass('show');
}

$(document).ready(function(){
	// mp3 player
	$("#mp3").jmp3();
	
	// execute slideshow
	slideShow();
});

$(window).load(function () {
	// homepage animations effects
	$("#jazzato_title").delay(150).fadeIn(900, function(){ // esegue il fadein della scritta jazzato
		$('#jazzato_text').animate({ 
			width: "251px",
			height: "59px",
		}, 700, function(){
			$('#box_home_event').animate({
				right: "0px",
				width: "445px",
			}, 800, function(){
				$('#home_event_date').fadeIn(400, function(){
					$('#home_event_title').fadeIn(300, function(){
						$('#home_event_description').fadeIn(300);
						
					});
				});
			});
		});
	});
});
