google.load("maps", "2");
function initialize() {
	var map = new google.maps.Map2(document.getElementById("gmap"));
	map.setCenter(new google.maps.LatLng(43.253986, -77.696772), 15);
	map.setUIToDefault();
	map.openInfoWindowHtml(new google.maps.LatLng(43.253986,-77.696772),'<h4><h4>Greece Animal Hospital<\/h4></h4><div id=\"gaddress\">3180 Latta Road, Suite 800 Rochester, NY 14612<\/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.253986,-77.696772);
	map.addOverlay(new google.maps.Marker(point, icon));
}
google.setOnLoadCallback(initialize);
