jQuery(function($) {
	var timer;
	function start(event)
	{
		$("body").animate({"opacity":1},1000, "linear", show1);
	}
	
	function show1(event)
	{
		 $("#section").addClass("show");
		$("body").animate({"opacity":1},1000, "linear", null);
	}

	start();
});

