google.load("maps", "2");
function initialize() {
	var map = new google.maps.Map2(document.getElementById("gmap"));
	map.setCenter(new google.maps.LatLng(33.577764, -111.875625), 13);
	map.setUIToDefault();
	map.openInfoWindowHtml(new google.maps.LatLng(33.577764,-111.875625),'<h4><h4>Scottsdale Ranch Animal Hospital<\/h4></h4><div id=\"gaddress\">9993 N. 95th Way Scottsdale, AZ 85258<\/div>');
	var icon = new google.maps.Icon();
	icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	icon.iconSize = new google.maps.Size(12, 20);
	icon.shadowSize = new google.maps.Size(22, 20);
	icon.iconAnchor = new google.maps.Point(6, 20);
	icon.infoWindowAnchor = new google.maps.Point(5, 1);
	var point = new google.maps.LatLng(33.577764,-111.875625);
	map.addOverlay(new google.maps.Marker(point, icon));
}
google.setOnLoadCallback(initialize);
