google.load("maps", "2");
function initialize() {
	var map = new google.maps.Map2(document.getElementById("gmap"));
	map.setCenter(new google.maps.LatLng(43.036933, -77.449751), 16);
	map.setUIToDefault();
	map.openInfoWindowHtml(new google.maps.LatLng(43.036933,-77.449751),'<h4><h4>Perinton Veterinary Hospital<\/h4></h4><div id=\"gaddress\">11 LaSalle Parkway Victor, NY 14564<\/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.036933,-77.449751);
	map.addOverlay(new google.maps.Marker(point, icon));
}
google.setOnLoadCallback(initialize);
