google.load("maps", "2");
function initialize() {
	var map = new google.maps.Map2(document.getElementById("gmap"));
	map.setCenter(new google.maps.LatLng(31.12093, -97.891987), 14);
	map.setUIToDefault();
	map.openInfoWindowHtml(new google.maps.LatLng(31.12093,-97.891987),'<h4><h4>Hill Country Animal Hospital<\/h4></h4><div id=\"gaddress\">103 Wolfe Road Copperas Cove, TX 76522<\/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(31.12093,-97.891987);
	map.addOverlay(new google.maps.Marker(point, icon));
}
google.setOnLoadCallback(initialize);
