if(GBrowserIsCompatible())
{
var point = new Array();
var nCnt = 0;
var gmarker = new Array();
var htmls = new Array();
point[0] = new GLatLng(34.971003,136.608750); htmls[0] = '<strong>本社</strong><br />三重県四日市市芝田2丁目3番1号<br />TEL：059-356-2111';
point[1] = new GLatLng(34.969685,138.388992); htmls[1] = '<strong>ア・ビュー静岡｜静岡店</strong><br />静岡県静岡市駿河区南町6－22サウスクレスト207';//<br />TEL：054-288-4181
point[2] = new GLatLng(34.961809,138.381716); htmls[2] = '<strong>ア・ビュー静岡｜あいネット店</strong><br />静岡市駿河区寿町6-14';//<br />TEL：054-284-5877
point[3] = new GLatLng(34.706469,137.741322); htmls[3] = '<strong>ア・ビュー静岡｜浜松店</strong><br />静岡県浜松市中区中央3-11-11（アルコラッジョ マリエール内）';//<br />TEL：053-454-5585
point[4] = new GLatLng(35.174424,136.89022); htmls[4] = '<strong>ア・ビュー名古屋｜名古屋営業本部</strong><br />愛知県名古屋市西区那古野1丁目15番18号<br />那古野ビル南館2F';//<br />TEL：052-569-5775
point[5] = new GLatLng(35.168735,136.884407); htmls[5] = '<strong>ア・ビュー名古屋｜名古屋駅前店</strong><br />愛知県名古屋市中村区名駅一丁目2番4号';//<br />TEL：052-581-7788
point[6] = new GLatLng(35.166731,136.948611); htmls[6] = '<strong>ア・ビュー名古屋｜池下店</strong><br />愛知県名古屋市千種区覚王山通8-18';//<br />TEL：052-763-2100
point[7] = new GLatLng(35.087707,137.157416); htmls[7] = '<strong>ア・ビュー名古屋｜トヨタ店</strong><br />愛知県豊田市喜多町一丁目140番地';//<br />TEL：0565-35-2011
point[8] = new GLatLng(34.739882,137.37589); htmls[8] = '<strong>ア・ビュー名古屋｜三河店</strong><br />愛知県豊橋市中浜町212<br />（マリエール豊橋内）';//<br />TEL：0532-47-1137
point[9] = new GLatLng(36.577641,136.650312); htmls[9] = '<strong>ア・ビュー北陸｜北陸店</strong><br />石川県金沢市此花町6番10号金沢ビルB1<br />金沢ビルB1';//<br />TEL：076-235-2120
point[10] = new GLatLng(34.971003,136.608644); htmls[10] = '<strong>ア・ビュー三重｜北勢店</strong><br />三重県四日市市芝田2丁目3番1号<br />';//<br />TEL：0598-22-0703
point[11] = new GLatLng(34.580295,136.519268); htmls[11] = '<strong>ア・ビュー三重｜南勢店</strong><br />三重県松阪市川井町772<br />（オルヴェート内）';//<br />TEL：0598-22-0703
point[12] = new GLatLng(33.588369,130.41972); htmls[12] = '<strong>ア・ビュー福岡｜博多駅前店</strong><br />福岡県福岡市博多区博多駅中央街7番2号 博多SSビル3階';//<br />TEL：092-473-5558
point[13] = new GLatLng(33.595506,130.405137); htmls[13] = '<strong>ア・ビュー福岡｜中州川端店</strong><br />福岡県福岡市博多区下川端町3番2号';//<br />TEL：(仮)092-262-1111
point[14] = new GLatLng(35.648594,139.744392); htmls[14] = '<strong>ア・ビュー東京｜東京営業本部</strong><br />東京都港区三田二丁目14-7ローレル三田4F';//<br />TEL：03-5439-0055

function createMarker(point,htmlData)
{
var iconSet = new GIcon();
iconSet.image            = "mapimage/"+ nCnt +".png"; //アイコン画像パス
iconSet.shadow           = "mapimage/shadow.png"; //影画像パス
iconSet.iconSize         = new GSize(21, 34); //アイコンサイズ
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(point,iconSet);
GEvent.addListener(marker, 'click', function(){
marker.openInfoWindowHtml(htmlData);
});
return marker;
}
function myclick(HtmlCnt) {
gmarker[HtmlCnt].openInfoWindowHtml(htmls[HtmlCnt]);
}
var map = new GMap2(document.getElementById("map"));
//操作バー（左）
map.addControl(new GLargeMapControl());
//表示切替（上）
//map.addControl(new GMapTypeControl());
//ダブルクリックズーム＆スムージング
map.enableContinuousZoom();
//初期表示の画面の中心座標
map.setCenter(new GLatLng(34.971003,136.608644), 16);
//初期フキダシ表示内容
map.openInfoWindowHtml(new GLatLng(34.971003,136.608644),'<strong>本社</strong><br />三重県四日市市芝田2丁目3番1号<br />TEL：059-356-2111');
var nDataNum = point.length;
for(nCnt=0;nCnt<nDataNum;nCnt++)
{
var marker = createMarker(point[nCnt],htmls[nCnt]);
gmarker[nCnt] = marker;
map.addOverlay(marker);
}
}
