/**
 * 賢者.tv　一覧・検索部
 *
 * @author  Shigeaki Kurimoto <kurimoto@y-enjin.co.jp>
 * @create  2010/06/22
 * @version 1.00
 */

/* -------------------------------------------------------------------- */

/**
 * アンケート実行結果 マウスアクション
 */
function top_quest_result()
{
	new Ajax.Request(ROOTPATH + "/index.php?c=top&m=quest_result",{
		method     : "POST",
		onSuccess  : function(httpObj){
			$('top_quest').innerHTML = httpObj.responseText;
		}
	});
}

function top_quest_return()
{
	new Ajax.Request(ROOTPATH + "/index.php?c=top&m=quest",{
		method     : "POST",
		onSuccess  : function(httpObj){
			$('top_quest').innerHTML = httpObj.responseText;
		}
	});
}

