/*
*	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){
				$("#man_value").text(res.value.man);
				$("#woman_value").text(res.value.woman);
				$("#gokei_value").text(res.value.man+res.value.woman);
			}
		}
	});
	
	//ログイン中のプロフィール情報を取得します
	$.ajax({
		type: "GET",
		url: "/api/profile.php",
		dataType : "json",
		async: true,
		cache: false,
		success: function(res){
			if (res.code == 200) {
				$("#profile .nick_value").text(res.value.nickname);
				$("#profile .nick_suffix").text("さん");
				$("#profile .jouga_address").text(res.value.jouga_address);
				$("#profile .logout_url").attr("href",res.value.logout_url);
				$("#profile .logout").show();
				$("#profile .login").hide();
			} else {
				$("#profile .login").show();
			}
		}
	});
});

