if(GBrowserIsCompatible())
{
var point2 = new Array();
var nCnt2 = 0;
var gmarker2 = new Array();
var htmls2 = new Array();
point2[0] = new GLatLng(33.635455,130.423881); htmls2[0] = '<div style="width:300px;"><img style="float:left;margin-right:15px;width:65px;" src="images/vesselhotel.gif" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">ベッセルホテル　福岡貝塚<br />〒812-0053<br />福岡県福岡市東区箱崎七丁目10-65<br /> TEL：092-642-0101<br />FAX：092-642-0106‎</p></div>';

//海の中道海浜公園
point2[1] = new GLatLng(33.658868,130.353526); htmls2[1] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot01_small.jpg" width="65" height="75" /><p style="width:190px;float:left; font-size:11px;">海の中道海浜公園<br />福岡市東区大字西戸崎18-25<br /> TEL：092-603-1111<br />FAX：092-603-1119‎</p>';

//マリンワールド海の中道
point2[2] = new GLatLng(33.6615826,130.3635271); htmls2[2] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot02_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">マリンワールド海の中道<br />福岡市東区西戸崎18番28号<br /> TEL：092-603-0400‎</p>';

//中洲のラーメン屋台
point2[8] = new GLatLng(33.594752,130.406419); htmls2[8] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot03_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">中洲のラーメン屋台</p>';

//キャナルシティー
point2[4] = new GLatLng(33.588659,130.410482); htmls2[4] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot04_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">キャナルシティー<br />福岡県福岡市博多区住吉1丁目2<br /> TEL：092-282-2525</p>';

//太宰府天満宮
point2[5] = new GLatLng(33.521526,130.534856); htmls2[5] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot05_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">太宰府天満宮<br />福岡県福岡市博多区住吉1丁目2<br />TEL：092-282-2525</p>';

//筥崎宮
point2[6] = new GLatLng(33.614610,130.423384); htmls2[6] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot06_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">筥崎宮<br />福岡県福岡市東区箱崎1-22-1<br />TEL：092-641-7431</p>';

//福岡タワー
point2[7] = new GLatLng(33.5933317,130.351408); htmls2[7] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot07_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">福岡タワー<br />福岡県福岡市早良区百道浜2丁目3番26号<br />TEL：092-823-0234<br />FAX：092-822-4656</p>';

//天神
point2[3] = new GLatLng(33.589473,130.399797); htmls2[3] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_spot08_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">天神</p>';



//GOLF SPOTS

//西戸崎シーサイドカントリークラブ
point2[9] = new GLatLng(33.658919,130.336805); htmls2[9] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_golf01_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">西戸崎シーサイドカントリークラブ<br />福岡県福岡市東区大字西戸崎316<br />TEL：092-603-0678<br />FAX：092-603-2572</p>';

//若宮ゴルフクラブ
point2[10] = new GLatLng(33.711025,130.591543); htmls2[10] = '<img style="float:left;margin-right:15px;width:65px;" src="images/img_golf02_small.jpg" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">若宮ゴルフクラブ<br />福岡県宮若市乙野1121<br />TEL：0949-54-0595<br />FAX：0949-54-0832</p>';


function createMarker2(point2,htmlData)
{
var iconSet = new GIcon();
iconSet.image            = "mapimage/"+ nCnt2 +".png"; //アイコン画像パス
iconSet.shadow           = "mapimage/shadow.png"; //影画像パス
iconSet.iconSize         = new GSize(22, 30); //アイコンサイズ
iconSet.shadowSize       = new GSize(39, 34); //影サイズ
iconSet.iconAnchor       = new GPoint(10, 34); //アイコンの表示開始位置（0,0）は左上角から
iconSet.infoWindowAnchor = new GPoint(15, 20); //情報ウィンドウの表示開始位置
iconSet.infoShadowAnchor = new GPoint(15, 20); //情報ウィンドウの影の表示開始位置
var marker = new GMarker(point2,iconSet);
GEvent.addListener(marker, 'click', function(){
marker.openInfoWindowHtml(htmlData);
});
return marker;
}
function myclick2(HtmlCnt) {
gmarker2[HtmlCnt].openInfoWindowHtml(htmls2[HtmlCnt]);
}
var map2 = new GMap2(document.getElementById("gmap"));
//操作バー（左）
map2.addControl(new GLargeMapControl());
//表示切替（上）
//map2.addControl(new GMapTypeControl());
//ダブルクリックズーム＆スムージング
map2.enableContinuousZoom();
//初期表示の画面の中心座標
map2.setCenter(new GLatLng(33.635455,130.423881), 11); 
//初期フキダシ表示内容
map2.openInfoWindowHtml(new GLatLng(33.635455,130.423881),'<div style="width:300px;"><img style="float:left;margin-right:15px;width:65px;" src="images/vesselhotel.gif" width="65" height="75" /><p style="width:200px;float:left; font-size:11px;">ベッセルホテル　福岡貝塚<br />〒812-0053<br />福岡県福岡市東区箱崎七丁目10-65<br /> TEL：092-642-0101<br />FAX：092-642-0106</p></div>');
var nDataNum = point2.length;
for(nCnt2=0;nCnt2<nDataNum;nCnt2++)
{
var marker = createMarker2(point2[nCnt2],htmls2[nCnt2]);
gmarker2[nCnt2] = marker;
map2.addOverlay(marker);
}

}