var map = new YMap(document.getElementById('mapContainer'));

function loadMap(){
	// Create a map object
	//var map = new YMap(document.getElementById('mapContainer'));
	var directions = "http://maps.google.com/maps?saddr=&daddr=5651+Frist+Blvd%2E%2C+Suite+314%2C+Hermitage%2C+TN+37076";
	var address = "5651 Frist Blvd., Suite 314, Hermitage, TN 37076";
	var zoom = 3;
	var bubbleTxt = '<div style="width:155px;height:70px;padding:5px;"><b>Summit Medical Center</b><br />5651 Frist Blvd., Suite 314 <br />Hermitage, TN 37076<br /><a href="'+directions+'" target="_blank">Get Directions</a></div>';
	map.addPanControl();
	map.addZoomLong();	
	// Display the map centered on a latitude and longitude
	var centerPoint = new YGeoPoint(36.17588581603843, -86.60621166229248);
map.drawZoomAndCenter(centerPoint, zoom);
	officeMarker = new YMarker(address,'')
	officeMarker.addLabel("");
	officeMarker.addAutoExpand(bubbleTxt);
	officeMarker.setSmartWindowColor('orange');
	
	map.addOverlay(officeMarker, 'orange');
}
window.onload = loadMap;