/* edbellessere by WebLogiX */
var tempo = 800;

jQuery(document).ready(function(){
	$('#menu').slideDown(tempo*3, 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,bollaMarrone).sprite({fps: 1, no_of_frames: 1})
					.spRandom({
						top: 100,
						left: 100,
						right: 800,
						bottom: 400,
						speed: 3500,
						pause: 0
					});
}
function bollaMarrone()
{
	$('#bolla-marrone').fadeIn(tempo,bollaVerde).sprite({fps: 1, no_of_frames: 1})
					.spRandom({
						top: 100,
						left: 100,
						right: 800,
						bottom: 400,
						speed: 3500,
						pause: 0
					});
}

function bollaVerde()
{
	$('#bolla-verde').fadeIn(tempo, bollaArancione).sprite({fps: 1, no_of_frames: 1})
					.spRandom({
						top: 100,
						left: 100,
						right: 800,
						bottom: 400,
						speed: 3500,
						pause: 0
					});
}

function bollaArancione()
{
	$('#bolla-arancione').fadeIn(tempo).sprite({fps: 1, no_of_frames: 1})
					.spRandom({
						top: 100,
						left: 100,
						right: 800,
						bottom: 400,
						speed: 3500,
						pause: 0
					});
}


