$(document).ready(function(){
	
	//移除主页splash
	$('#loading img').fadeOut(3000, function(){
		
		$(this).parent().hide();
		
		//内容淡出
		$('#loading-mask').fadeOut(1000, function(){
			$(document.body).removeAttr('scroll');
		});
		
	});
	
});