$(document).ready(function() {
	// Animate top info box
	/*$("#topinfo p").css('marginTop','-50px');
	for(var i = 0; i < 3; i++)
		$("#topinfo p").eq(i).delay(i*300).animate({marginTop: "5px"},1000); */
	$("#topinfo").hide().fadeIn(1000);
	$("#flags").hide().delay(500).fadeIn(1500);
	
	// Animate main content
	$("#welcome").hide();
	$("#content").hide().fadeIn(700, function() {
		$("#welcome").css('right','300px').show().animate({right: "0"},700);
	});
		
	// Animate footer
	$("#footer p").hide();
	$("#footer #menu").hide().fadeIn(2000);
	$("#footer p").delay(500).fadeIn(2000);
});
