// JavaScript Document

 

$(document).ready(function() 
{	
		$('#timerholder').hide();
		$('#sound_element').hide();
		$('#apo').hide();
	function tubes()
	{
		$('#b1').animate({"bottom": "18px"}, 500, "linear");
		$('#b2').animate({"bottom": "20px"}, 700, "linear");
		$('#b3').animate({"bottom": "20px"}, 900, "linear");
		$('#b4').animate({"bottom": "20px"}, 1100, "linear");
		$('#b5').animate({"bottom": "20px"}, 1300, "linear");
		$('#b6').animate({"bottom": "20px"}, 1500, "linear");
		$('#b7').animate({"bottom": "20px"}, 1700, "linear");
		$('#b8').animate({"bottom": "20px"}, 1900, "linear");
		$('#b9').animate({"bottom": "25px"}, 2100, "linear");
		$('#apo').delay(2300).fadeIn('fast');
	};
	setTimeout(tubes, 1000);
	
	function puffar()
	{
		$('#puffar').animate({"top": "-118px"}, 500, "easeOutElastic");
	}
	setTimeout(puffar, 3000);
	function reveal()
	{
		
		$('#timerholder').show();
		$('#sound_element').show();
	}
	setTimeout(reveal, 4000);


});
