//<![CDATA[

google.load("maps", "2");

function init() {
  if (google.maps.BrowserIsCompatible()) {

	var map = new google.maps.Map2(document.getElementById("map"));
	map.addControl(new google.maps.MapTypeControl());
	map.addControl(new google.maps.LargeMapControl());
	map.setCenter(new google.maps.LatLng(-37.918,145.059), 13);

	// Create our "tiny" marker icon
	var icon = new google.maps.Icon();
	icon.image = "http://www.google.com/mapfiles/ms/icons/red-pushpin.png";
	icon.shadow = "http://www.google.com/mapfiles/ms/icons/pushpin_shadow.png";
	icon.iconSize = new google.maps.Size(32, 32);
	icon.shadowSize = new google.maps.Size(59, 32);
	icon.iconAnchor = new google.maps.Point(10, 32);
	icon.infoWindowAnchor = new google.maps.Point(16, 1);

	// Creates a marker whose info window displays the given info
	function createMarker(point, info) {
	  // Create a lettered icon for this point using our icon class

	  var marker = new google.maps.Marker(point, icon);

	  google.maps.Event.addListener(marker, "click", function() {
		marker.openInfoWindowHtml(info);
	  });
	  return marker;
	}

	// Kingsway & Wren
	map.addOverlay(createMarker(new google.maps.LatLng(-37.939580,145.0750), 
	'\
		<div style="color: #000; text-align: left;" style="font-family: Arial;">\
			<h3>Self Store Moorabbin</h3>\
			Corner Wren Road &amp; Kingsway, <BR>\
			Moorabbin Victoria 3189<BR><BR>\
			<b>T:</b> 03 9553 4567 <BR>\
			<b>E:</b> <a href=\"mailto:admin@spotonstorage.com.au\">admin@spotonstorage.com.au</a>\
		</div>\
	'
	));

	// South & Alex
	map.addOverlay(createMarker(new google.maps.LatLng(-37.937703,145.070751),  
	'\
		<div style="color: #000; text-align: left;" style="font-family: Arial;">\
			<h3>Self Store South Road</h3>\
			South Rd (Corner Alex Avenue), <BR>\
			Moorabbin Victoria 3189<BR><BR>\
			<b>T:</b> 03 9555 0022 <BR>\
			<b>E:</b> <a href=\"mailto:admin@spotonstorage.com.au\">admin@spotonstorage.com.au</a>\
		</div>\
	'
	));

	// North d
	map.addOverlay(createMarker(new google.maps.LatLng(-37.906826,145.062744),  
	'\
		<div style="color: #000; text-align: left;" style="font-family: Arial;">\
			<h3>Self Store North Road</h3>\
			928 North Road, <BR>\
			Bentleigh East Victoria 3165<BR><BR>\
			<b>T:</b> 03 9563 7700 <BR>\
			<b>E:</b> <a href=\"mailto:admin@spotonstorage.com.au\">admin@spotonstorage.com.au</a>\
		</div>\
	'
	));

  }
  
}

  google.setOnLoadCallback(init);

//]]>
