google.load("maps", "2");
function initialize() {
	var map = new google.maps.Map2(document.getElementById("gmap"));
	map.setCenter(new google.maps.LatLng(43.212026, -77.67158), 15);
	map.setUIToDefault();
	map.openInfoWindowHtml(new google.maps.LatLng(43.212026,-77.67158),'<h4><h4>Animal Rehabilitation Center of Rochester<\/h4></h4><div id=\"gaddress\">550 Center Place Dr. Rochester, NY 14615<\/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(43.212026,-77.67158);
	map.addOverlay(new google.maps.Marker(point, icon));
}
google.setOnLoadCallback(initialize);
