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=1277+E%2E+Missouri+Avenue%2C+Suite+208%2C+Phoenix%2C+AZ+85014";
	var address = "1277 E. Missouri Avenue, Suite 208, Phoenix, AZ 85014";
	var zoom = 3;
	var bubbleTxt = '<div style="width:250px;height:70px;padding:5px;"><b>Dental Implants & Periodontology of Arizona</b><br /><em>Orest G. Komarnyckyj, D.D.S.</em><br />1277 E. Missouri Avenue, Suite 208<br />Phoenix, AZ 85014 <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(33.51561899248396, -112.05406665802002);
map.drawZoomAndCenter(centerPoint, zoom);
	officeMarker = new YMarker(address,'')
	officeMarker.addLabel("");
	officeMarker.addAutoExpand(bubbleTxt);
	officeMarker.setSmartWindowColor('orange');
	
	map.addOverlay(officeMarker, 'orange');
}
window.onload = loadMap;