/*
*	jqueryのincludeは必須です。
*/

//htmlの描画が完了したときに起こるイベントです。
$(document).ready(function(){
	//人口と会員登録URLを取得して、設置します。
	$.ajax({
		type: "GET",
		url: "/api/status_index.php",
		dataType : "json",
		async: true,
		cache: false,
		success: function(res){
			if(res.code == 200){
				$("#presignup_link").attr("href", res.value.presignup_link);
			}
		}
	});
});

