/**
 * 賢者.tv　ランキング部
 *
 * @author  Shigeaki Kurimoto <kurimoto@y-enjin.co.jp>
 * @create  2010/07/08
 * @version 1.00
 */

/* -------------------------------------------------------------------- */

/**
 * ランキングメニュー選択
 */
function change_ranking(method,pointid,month)
{
	new Ajax.Request(ROOTPATH + "/index.php?c=ranking&m=changesubmenu",{
		method     : "POST",
		parameters : "&callm="+escape(method)+"&point="+escape(pointid)+"&month="+escape(month),
		onSuccess  : function(httpObj){
			$('idRankingAll').innerHTML = httpObj.responseText;
		}
	});
}

