﻿onload=load;
var map;
function load() {
	if (GBrowserIsCompatible()) {
		////Gmap
        map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(35.537045598427795, 139.6350), 16); 
		map.addControl(new GLargeMapControl());
		map.enableScrollWheelZoom();
		map.enableContinuousZoom();
		
		// scroll canceler
		GEvent.addDomListener(document.getElementById("map"),"DOMMouseScroll", CancelEvent); // Firefox
		GEvent.addDomListener(document.getElementById("map"),"mousewheel",     CancelEvent); // IE
/////XML関連
		var request = GXmlHttp.create();
		request.open("GET", "http://www.tsunashima.info/mapmt/marker.xml?"+new Date().getTime(), true);
		request.onreadystatechange = function() {
			if (request.readyState == 4) {
				xml = request.responseXML;
				
				// ディフォルトカテゴリ
				//var thisPageDefaultMainCategory = "goods";
//					var thisPageDefaultSubCategory  = "flower";sc_service
				if(thisPageDefaultMainCategory!="" && thisPageDefaultSubCategory!=""){
					document.getElementById('sc_'+thisPageDefaultMainCategory).style.display = "";
					addCategoriesSub(thisPageDefaultMainCategory,thisPageDefaultSubCategory);
				}
				
				//メニュー部分表示（別ファイル）
			//	showMenu(defaultShowMenu);
			showSCLength();
			}
		}
		request.send(null);
	}
}






////////////////////////////////// scroll cancel //////////////////////////////////
function CancelEvent(event) {
	  e = event;
	  if (typeof e.preventDefault  == 'function') 
	        e.preventDefault();
	  if (typeof e.stopPropagation == 'function')
	        e.stopPropagation();
	  if (window.event) {
	     window.event.cancelBubble = true; // for IE
	     window.event.returnValue = false; // for IE
	  }
} // ----------------------------------------------------------------------------
