/* edbellessere by WebLogiX */
var tempo = 400;

jQuery(document).ready(function(){
	$('#menu').slideDown(tempo*2, bolleColorate);
});

function bolleColorate()
{
	bollaStyle = 'display:none;position:absolute; top:50%; left:50%;';
	
	$('#content').prepend('<div id="bolla-viola" style="'+bollaStyle+'background:url(/layout/bolla-viola.png); width:80px; height:74px; margin-left:-40px; margin-top: -37px">&nbsp;</div><div id="bolla-marrone" style="'+bollaStyle+'background:url(/layout/bolla-marrone.png); width:67px; height:62px; margin-left:-33px; margin-top:-31px">&nbsp;</div><div id="bolla-verde" style="'+bollaStyle+'background:url(/layout/bolla-verde.png); width:82px; height:76px; margin-left:-41px; margin-top:-38px">&nbsp;</div><div id="bolla-arancione" style="'+bollaStyle+'background:url(/layout/bolla-arancione.png); width:67px; height:62px; margin-left:-33px; margin-top:-31px">&nbsp;</div>');	
	
	
	bollaViola();
}

function bollaViola()
{
	$('#bolla-viola').fadeIn(tempo,function() {
		$(this).animate({'top':'118px', 'left':'230px'}, bollaMarrone);
	});
}
function bollaMarrone()
{
	$('#bolla-marrone').fadeIn(tempo,function(){
		$(this).animate({'top':'118px', 'left':'900px'}, bollaVerde);
	});
}

function bollaVerde()
{
	$('#bolla-verde').fadeIn(tempo, function(){
		$(this).animate({'top':'500px', 'left':'230px'}, bollaArancione);
	});
}

function bollaArancione()
{
	$('#bolla-arancione').fadeIn(tempo, function(){
		$(this).animate({'top':'500px', 'left':'900px'}, bollaArancione);
	});
}


