/**********************
 * 各地域の人気プラン情報を取得する
 */

$('document').ready(function() {

    getAreaPlan();
});

/*
 * おすすめプランの取得
 */
function getAreaPlan()
{
	var sAspPath = "/lib/general_plan_rank.asp";
	// カレンダーの取得
	$.ajax({
		type: "post",
		url: sAspPath,
		data: "lng=1",
		success: function( html )
		{
		    setAreaPlan(html);
		},
		error: function()
		{
			sMsg = '<p class="no_result">取得に失敗しました。</p>';
			setAreaPlan(sMsg);
		}
	});
}

/*
 * おすすめプランの表示
 */
function setAreaPlan(sHtml)
{
	
	// カレンダーの表示
    $("div.vogue").html(sHtml);

}


