// コカイド 20070510

window.onload = function(){
eid = window.location.hash.replace(/#/i,"");
if (!eid || eid == "comment") { eid = "mm1"; }
if (!isNaN(eid.replace(/mm/i,""))) { document.getElementById(eid).style.display = "block"; }
if (eid == "mm3") { googlemap(); }
}

function googlemap() {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(35.8386464911396, 137.99311995506287), 18);
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.enableContinuousZoom();
var marker = new GMarker(map.getCenter());
map.addOverlay(marker);
}

function menumove(uid) {
document.getElementById(uid).style.padding = "0";
}

function menumoveout(uid) {
document.getElementById(uid).style.padding = "0";
}

function mainopen(uid,n) {
for (i = 1; i <= n; i++) { document.getElementById("mm"+i).style.display = "none"; }
document.getElementById(uid).style.display = "block";
if (uid == "mm3") { googlemap(); }
}