function reasonable_plan(){	$.getJSON("/php/plan_keywords/reasonable_plan/", function(json){
		var list = json.plans;		if(!list) {			return false;		}		var dls = "<ul class='clearFix'>";		for (i = 0; i < list.length; i++) {			if(list[i].table_name == "jtt_plans") {				var tmp = "<li><a href='/php/jtt_plans/detail/"+list[i].plan_id+"'>"+list[i].hotel_name+" "+list[i].people+"名様1室<em>"+list[i].price+"</em>円から</a></li>"			}			else{				var tmp = "<li><a href='/php/plans/detail/"+list[i].plan_id+"'>"+list[i].hotel_name+" "+list[i].people+"名様1室<em>"+list[i].price+"</em>円から</a></li>"			}			dls = dls + tmp;		}			dls = dls + "</ul><p class='navi_allplans'><a href='/php/plans/index'>すべてのプラン一覧</a></p>";				$(".plan_top_plan").html(dls);	})
}function reasonable_plan_nagoya(){	$.getJSON("/php/plan_keywords/reasonable_plan_rdm/2", function(json){
		var list = json.plans;		if(!list) {			return false;		}		var dls = "<ul class='clearFix'>";		for (i = 0; i < list.length; i++) {			if(list[i].table_name == "jtt_plans") {				var tmp = "<li><a href='/php/jtt_plans/detail/"+list[i].plan_id+"'>"+list[i].hotel_name+" "+list[i].people+"名様1室<em>"+list[i].price+"</em>円から</a></li>"			}			else{				var tmp = "<li><a href='/php/plans/detail/"+list[i].plan_id+"'>"+list[i].hotel_name+" "+list[i].people+"名様1室<em>"+list[i].price+"</em>円から</a></li>"			}			dls = dls + tmp;		}			dls = dls + "</ul><p class='navi_allplans'><a href='/php/plans/?dept=2'>すべてのプラン一覧</a></p>";				$(".plan_top_plan").html(dls);	})
}