//<![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.82732,145.283038), 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;
	}

	// 192 Canterbury Road
	map.addOverlay(createMarker(new google.maps.LatLng(-37.82732,145.283038), "<div align=\"left\"><h3>Taylors Trees</h3>194 Canterbury Road, Bayswater North<BR><BR> <B>T:</B> 1800 811 617 <BR> <b>E:</b> <a href=\"mailto:info@taylorstrees.com.au\">info@taylorstrees.com.au</a></div>"));

  }
  
}

  google.setOnLoadCallback(init);

//]]>