$(function(){

	function flashIni(){
		$("#flashcloud").css({"left":"0px", "top":"0px"});
		$("#flashtext1").css({"display":"none", "left": "120px", "top":"75px"});
		$("#flashtext2").css({"display":"none", "margin":"95px auto 0px auto", "width":"293px", "height":"21px"});
		$("#flashtext3").css({"display":"none", "left": "180px", "top":"85px"});
		$("#flashtext4").css({"display":"none", "left":"170px", "top":"75px", "width":"208px", "height":"17px"});
		flashStart();
	}
	function flashStart(){
		$("#flashback").css("opacity", "0.6").fadeIn(3000);
		$("#flashcloud").css("opacity", "0.5").fadeIn(3000);
		$("#flashcloud").animate({"left":"-1200px"}, 60000);
		$("#flashline").css("opacity", "0.6").fadeIn(3000, text1_1);
	}
	
	function text1_1(){
		setTimeout(text1_2, 3000);
	}
	function text1_2(){
		$("#flashtext1").fadeIn(3000, text4_1);
	}
	function text4_1(){
		$("#flashtext4").hide("puff",{percent:400},2000, text1_3);
		//$("#flashtext4").css("opacity", "0.3").animate({top:"45px", left:"-10px", width:"569px", height:"39px"}, 400, text2_1);
	}
	function text1_3(){
		$("#flashtext1").animate({"top":"-=30px"}, 1000, text2_1);
	}
	function text2_1(){
		$("#flashtext2").fadeIn(2000, text2_2);
	}
	function text2_2(){
		//$("#flashtext2").effect("scale",{percent:"50",origin:["bottom","center"]}, 2000, text3_1);
		//$("#flashtext2").animate({top:"127px", left:"208px", width:"132px", height:"10px"}, 2000, text3_1);
		$("#flashtext2").animate({"margin-top":"126px", "width":"132px", "height":"10px"}, 2000, text3_1);
	}
	function text3_1(){
		$("#flashtext3").fadeIn(2000, flashEnd);
	}
	function flashEnd(){
		setTimeout(disappearAll, 10000);
	}
			
	function disappearAll(){
		$("#flashback, #flashtext1, #flashtext2, #flashtext3, #flashline").fadeOut(2000);
		$("#flashcloud").fadeOut(2000, flashReady);
		$("#flashcloud").stop();
	}
	function flashReady(){
		setTimeout(flashIni, 2000);
	}
	
	flashIni();
	
});

