function LoadMap()
{
var map = new GMap(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(-33.86673,151.20608), 16);
var point = new GLatLng(-33.86741,151.20608);
var marker = new GMarker(point);

// Create the parking marker icon
var chapman = new GIcon();
chapman.image = "http://www.chapmaneastway.com.au/files/images/icon_chapman.gif";
chapman.shadow = "http://www.chapmaneastway.com.au/Files/Images/icon_shadow.gif";
chapman.iconSize = new GSize(51, 40);
chapman.shadowSize = new GSize(42, 28);
chapman.iconAnchor = new GPoint(9, 34);
chapman.infoWindowAnchor = new GPoint(9, 2);
chapman.infoShadowAnchor = new GPoint(9, 2);

// Create the parking marker icon
var wilson = new GIcon();
wilson.image = "http://www.chapmaneastway.com.au/files/images/icon_wilsons.gif";
wilson.shadow = "http://www.chapmaneastway.com.au/Files/Images/icon_shadow.gif";
wilson.iconSize = new GSize(42, 28);
wilson.shadowSize = new GSize(42, 28);
wilson.iconAnchor = new GPoint(9, 34);
wilson.infoWindowAnchor = new GPoint(9, 2);
wilson.infoShadowAnchor = new GPoint(9, 2);

// Create the parking marker icon
var secure = new GIcon();
secure.image = "http://www.chapmaneastway.com.au/files/images/icon_secure.gif";
secure.shadow = "http://www.chapmaneastway.com.au/Files/Images/icon_shadow.gif";
secure.iconSize = new GSize(42, 28);
secure.shadowSize = new GSize(42, 28);
secure.iconAnchor = new GPoint(9, 34);
secure.infoWindowAnchor = new GPoint(9, 2);
secure.infoShadowAnchor = new GPoint(9, 2);

// Create the parking marker icon
var grace = new GIcon();
grace.image = "http://www.chapmaneastway.com.au/files/images/icon_grace.gif";
grace.shadow = "http://www.chapmaneastway.com.au/Files/Images/icon_shadow.gif";
grace.iconSize = new GSize(42, 28);
grace.shadowSize = new GSize(42, 28);
grace.iconAnchor = new GPoint(9, 34);
grace.infoWindowAnchor = new GPoint(9, 2);
grace.infoShadowAnchor = new GPoint(9, 2);

var point = new GLatLng(-33.86741,151.20608);
var marker = new GMarker(point, chapman);
var point2 = new GLatLng(-33.86776,151.20496);
var marker2 = new GMarker(point2, wilson);
var point3 = new GLatLng(-33.86528,151.20685);
var marker3 = new GMarker(point3, secure);
var point4 = new GLatLng(-33.86673,151.20833);
var marker4 = new GMarker(point4, secure);
var point5 = new GLatLng(-33.86773,151.20857);
var marker5 = new GMarker(point5, secure);
var point6 = new GLatLng(-33.86535,151.20752);
var marker6 = new GMarker(point6, wilson);
var point7 = new GLatLng(-33.86840,151.20537);
var marker7 = new GMarker(point7, grace);

map.addOverlay(marker);
map.addOverlay(marker2);
map.addOverlay(marker3);
map.addOverlay(marker4);
map.addOverlay(marker5);
map.addOverlay(marker6);
map.addOverlay(marker7);

  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml('<div id="googleMap"><b>Chapman Eastway</b>,<br>United Airlines Building<br>Level 12, 10 Barrack Street<br>Sydney NSW 20004127<br>Telephone: +61 2 9262 4933</div>');
	map.setCenter(new GLatLng(-33.86741,151.20608), 16);
  });
  
  GEvent.addListener(marker2, "click", function() {
    marker2.openInfoWindowHtml('<div id="googleMap"><b>Wilson Parking</b><br>151 Clarence Street Sydney</div>');
	map.setCenter(new GLatLng(-33.86776,151.20496), 16);
  });

  GEvent.addListener(marker3, "click", function() {
    marker3.openInfoWindowHtml('<div id="googleMap"><b>Secure Parking</b><br>Wynyard Lane Sydney<br>(Enter off Margaret Street)</div>');
	map.setCenter(new GLatLng(-33.86528,151.20685), 16);
  });
  
   GEvent.addListener(marker4, "click", function() {
    marker4.openInfoWindowHtml('<div id="googleMap"><b>Secure Parking</b><br>Angel Place 117 Pitt Street Sydney</div>');
	map.setCenter(new GLatLng(-33.86673,151.20833), 16);
  });
   
      GEvent.addListener(marker5, "click", function() {
    marker5.openInfoWindowHtml('<div id="googleMap"><b>Secure Parking</b><br>No 1 Martin Place,<br> Pitt Street Sydney</div>');
	map.setCenter(new GLatLng(-33.86773,151.20857), 16);
  });

  
     GEvent.addListener(marker6, "click", function() {
    marker6.openInfoWindowHtml('<div id="googleMap"><b>Wilson Parking</b>,<br>Australia Square<br>264-278 George Street, Sydney</div>');
	map.setCenter(new GLatLng(-33.86535,151.20752), 16);
  });
	 
	      GEvent.addListener(marker7, "click", function() {
    marker7.openInfoWindowHtml('<div id="googleMap"><b>The Grace Hotel</b>,<br>Entry at 124 Clarence Street, Sydney</div>');
	map.setCenter(new GLatLng(-33.86840,151.20537), 16);
  });
}