

	//三秒后跳转
	setTimeout("gotoIndex()", 1000);
	
	/**
	 * 去首页
	 */
	function gotoIndex() {
		window.document.location.href = "/";
	}
