/*
 * 通常（その他）HTMLページのログイン部表示
 *
 * Copyright (c) 2009 yamazaki@re-set.ne.jp
 *
 * Date: 2009-10-28
 */
// 物件検索 or マイページ
jQuery(function(){
	dispLogin();
});
function dispLogin(){
	jQuery.post('/jquery/', {"mode": "loginOther"}, function(res){
		dispData(res);
	});
}
// 表示
function dispData(res){
	if(res){
		jQuery("#searchBtn").html(res);
	}
}

