$(window).load(function(){


	$(".run").each(function(){
	
		$("#logo1").animate({left: "0"}, 1)
		.animate({opacity: "0.0", top: "0", left: "0", height: "100", width: "123"}, 1)
		.animate({opacity: "1.0", top: "0", left: "0", height: "100", width: "123"}, 1000)
		$("#line1").animate({opacity: "1", height: "1", width: "1", top: "-50"}, 1)
		.animate({opacity: "1", width: "839"}, 2500)
		$("#logo2").animate({left: "716"}, 1)
		.animate({opacity: "0.0", top: "0", height: "100", width: "123"}, 1)
		.animate({opacity: "1.0", top: "0", height: "100", width: "123"}, 2500)
		return false;
	
	});

});