    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(35.1469717, 136.7151291), 16);
		
		var marker = new GMarker(new GLatLng(35.1469717, 136.71512911));
		
		map.addOverlay(marker);

		map.addControl(new GSmallMapControl());
      }
    }
    
/*var time = 2;
var no = 0;
var imgURL = new Array(
	"image/main_img1.jpg", "image/main_img2.jpg", "image/main_img3.jpg",
	"image/main_img4.jpg", "image/main_img5.jpg"
);

function cngImg(){		
	if (no == 5) {
		no = 0;
	}
	
	var imgPath = imgURL[no];
	
	if(navigator.userAgent.indexOf("MSIE") != -1){
		document.images.photo1.style.filter="blendTrans()";
		document.images.photo1.filters.blendTrans.Apply();
		document.images.photo1.filters.blendTrans.duration = time;
		document.images.photo1.src = imgPath;
		document.images.photo1.filters.blendTrans.Play();

	} else {
	
		document.images.photo1.src = imgPath;
	}
	
	no++;
	setTimeout("cngImg()",4200);
}*/

/*var time = 2;
var no = 1;

if(navigator.userAgent.indexOf("MSIE") == -1){
	var no =1;
}

var imgURL = new Array(
	"image/main_imgwhite.jpg", "image/main_imglogo.jpg", "image/main_img1.jpg",
	"image/main_img2.jpg", "image/main_img3.jpg", "image/main_img4.jpg",
	"image/main_img5.jpg"
);

function cngImg() {
	if (no == 7) {
		no = 1;
	}
	
	var imgPath = imgURL[no];
	
	if(navigator.userAgent.indexOf("MSIE") != -1){

		document.images.photo1.style.filter="blendTrans()";
		document.images.photo1.filters.blendTrans.Apply();
		document.images.photo1.filters.blendTrans.duration = time;
		document.images.photo1.src = imgPath;
		document.images.photo1.filters.blendTrans.Play();

	} else {
	
		document.images.photo1.src = imgPath;
	}
	
	no++;
	setTimeout("cngImg()",4200);

}*/



