    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(18.366304,73.755876), 12);
        map.setUIToDefault();

// -------------- Sinhagad Fort Pune -----------------
var point = new GLatLng(18.366304,73.755876);

var iconBlue = new GIcon(); 
iconBlue.image = 'http://heyiamonline.com/images/sinhagad40.png';

iconBlue.iconSize = new GSize(27, 36);
iconBlue.shadowSize = new GSize(27, 36);
iconBlue.iconAnchor = new GPoint(6, 20);
iconBlue.infoWindowAnchor = new GPoint(5, 1);


var options = { 
title: "Sinhagad Fort Pune",
icon: iconBlue,
draggable: true,
bouncy: false
};

var marker1 = new GMarker(point, options);

map.addOverlay(marker1);

GEvent.addListener(marker1, "click", function() {
        marker1.openInfoWindowHtml('');
      });
      map.addOverlay(marker1);
	  
	  
	    
		
      }
    }

