/*
 * 通常HTMLページのログイン部表示
 *
 * Copyright (c) 2009 yamazaki@re-set.ne.jp
 *
 * Date: 2009-10-14
 */
// カテゴリーを変更
jQuery(function(){
	dispLogin();
});
function dispLogin(){
	jQuery.post('/jquery/', {"mode": "loginForm"}, function(res){
		dispData(res);
	});
}
// 表示
function dispData(res){
	if(res){
		jQuery("#loginBox").html(res);
	}
}

