	var map = null;
	var pinID = 1;
	var findcontrol = false;
	var layerid=1;
	var lat_point1 = 29.18143;
	var lon_point1 = -80.985455;
	var lat_point2 = 28.32025;
	var lon_point2 = -80.608879;
	var lat_point3 = 28.393842;
	var lon_point3 = -81.532548;

	function GetMap() {
		map = new VEMap('map');
		map.SetDashboardSize(VEDashboardSize.Tiny);
		map.LoadMap(new VELatLong( ( (lat_point1+lat_point2+lat_point3)/3 ), ( (lon_point1+lon_point2+lon_point3)/3 ) ), 8 ,'r' , false);

        var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(lat_point1, lon_point1));
        shape.SetTitle('Shores Resort and Spa');
		shape.SetPhotoURL('http://shores.esitedemos.com/images/ms-map-inset.jpg');
		shape.SetDescription('2637 South Atlantic Avenue <br />Daytona Beach Shores, FL 32118');
        pinID++;
        map.AddShape(shape);

        shape = new VEShape(VEShapeType.Pushpin, new VELatLong(lat_point2, lon_point2));
        shape.SetTitle('Cocoa Beach');
        pinID++;
        map.AddShape(shape);
		
		shape = new VEShape(VEShapeType.Pushpin, new VELatLong(lat_point3, lon_point3));
        shape.SetTitle('Walt Disney World Resort');
        pinID++;
        map.AddShape(shape);
}



	$(function() {
			   
    if (BrowserDetect.browser != "Safari" && BrowserDetect.browser != "Opera") {
		GetMap();
	} else {
		$('div#map').html('<img src="images/interior/map.gif" alt="" />');	
	}
	});
