$(document).ready(function(){
	$(document).pngFix();
	$("a").attr({ onfocus: "this.blur();" });


	$("#grid").animate({ 
		top: "0px"
	}, 1000, function() {

		$("#sqr2").slideDown(2000);
		$("#sqr3").show(2000);
		$("#sqr4").slideDown(750);
		$("#sqr6").show(2000);
		$("#sqr8").show(1700);
		$("#sqr9").show(3000);


		$("#sqr1").animate({
			top: "109px"
		}, 1000 );
		$("#sqr5").animate({
			left: "395px"
		}, 1000);
		$("#sqr7").animate({
			left: "791px"
		}, 300 );
	});

	$("#enter").animate({ 
		top: "456px"
	}, 3000, function() {
		$("#xtra").animate({
			top: "7px"
		}, 200 );
	});
});