/**
 * オンロード用
 */
function init(){
	setTimeout('doTop()', 5000);
}

/**
 * 5秒後にトップページへ遷移する
 */
function doTop() {
	location.href = "/";
}
