//中心マーカーの表示・非表示
$(function() {
	//読み込まれたら実行
	$("div#map_control ul#map_control_lt li#icon_center a#mapcenter").toggle(
		function () {
			centerIcon.hide();
			$(this).text("中心マーカーの再表示");
		},
		function () {
			centerIcon.show();
			$(this).text("中心マーカーの非表示");
		}
	);
});
