$(document).ready(function() {
	$("#sidebarContent").animate({marginLeft: '0'}, 'slow', function() {
		$("#background").fadeIn("slow", function() {
			$("#content").fadeIn("slow");
		});
	});
});