/*
 * 左メニューの表示
 *
 * Copyright (c) 2009 yamazaki@re-set.ne.jp
 *
 * Date: 2009-12-10
 */
jQuery(function(){
	dispLeftMenu();
});
function dispLeftMenu(){
	jQuery.post('/jquery/', {}, function(res){
		dispData(res);
	});
}
// 表示
function dispData(res){
	if(res){
		jQuery("#exNavi").html(res);
	}
}

