
$(function(){
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("gmap"));
map.setCenter(new GLatLng(6.315981016562039,99.78744506835938), 11);
map.addControl(new GLargeMapControl());
//オリジナルマーカーの画像を作成
var icon = new GIcon();
icon.image = "reforestation/tree.gif";
icon.iconSize = new GSize(25, 25);
icon.iconAnchor = new GPoint(0, 35);
icon.infoWindowAnchor = new GPoint(18, 11);
var img=new Image();
        img.src="reforestation/reforest.jpg";
		//マーカーを作成
        var marker = new GMarker(new GLatLng(6.402051338218317,99.86005783081055),icon);
 GEvent.addListener(marker, "click", function() {
    //マーカーがクリックされたら、Lightbox風に表示する
             var html="<h5>Penang Japanese School</h5><br>25Jun.2009マングローブ植林<br>５年生・６年生　計３５本 エリア：Klim(キリム）"
              +"<center>"
              +"<img src='reforestation/reforest.jpg'>"
			  +"</center>"
			  +"<p2>25Jun.2009撮影</p2>";
			  map.openInfoBoard(map,html);
});
 //マーカーを地図上に配置
        map.addOverlay(marker);
var img=new Image();
        img.src="reforestation/reforest.jpg";
		//マーカーを作成
        var marker = new GMarker(new GLatLng(6.396080622376148,99.87095832824707),icon);
 GEvent.addListener(marker, "click", function() {
    //マーカーがクリックされたら、Lightbox風に表示する
             var html="<h5>学校法人　トラベルジャーナル学園<br>ホスピタリティ ツーリズム専門学校</h5><br>20Dec.2009マングローブ植林<br>計２００本 エリア：Klim(キリム）"
              +"<center>"
              +"<img src='reforestation/reforest_travelj_mangrove.jpg'>"
			  +"</center>"
			  +"<p2>19 Feb.2010撮影</p2>";
			  map.openInfoBoard(map,html);
});
 //マーカーを地図上に配置
        map.addOverlay(marker);
var img=new Image();
        img.src="reforestation/reforest.jpg";
		//マーカーを作成
        var marker = new GMarker(new GLatLng(6.34686221354787,99.80340957641602),icon);
 GEvent.addListener(marker, "click", function() {
    //マーカーがクリックされたら、Lightbox風に表示する
             var html="<h5>学校法人　トラベルジャーナル学園<br>ホスピタリティ ツーリズム専門学校</h5><br>実がなる木　２００本<br>エリア：Sungai Bukit Hantu(スンガイ ブキッ ハントゥ）"
              +"<center>"
              +"<img src='reforestation/reforestation_travelj_tree.jpg'>"
			  +"</center>"
			  +"<p2>22 Jul.2010撮影</p2>";
			  map.openInfoBoard(map,html);
});
 //マーカーを地図上に配置
        map.addOverlay(marker);
		
}
});



