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=120+East+Baltimore+Pike%2C+Media%2C+PA%2C+19063";
	var address = "120 East Baltimore Pike, Media, PA, 19063";
	var zoom = 4;
	var bubbleTxt = '<div style="width:170px;height:70px;padding:5px;"><b>James J. Gentile, D.D.S., P.C.</b><br />120 East Baltimore Pike <br />Media, PA, 19063-3890<br /><a href="'+directions+'" target="_blank">Get Directions</a></div>';
	map.addPanControl();
	map.addZoomLong();	
	// Display the map centered on a latitude and longitude
	var cPT = new YGeoPoint(39.914096,-75.373539); 
	map.drawZoomAndCenter(cPT, zoom);
	officeMarker = new YMarker(cPT,'')
	officeMarker.addLabel("");
	officeMarker.addAutoExpand(bubbleTxt);
	officeMarker.setSmartWindowColor('orange');
	
	map.addOverlay(officeMarker, 'orange');
}
window.onload = loadMap;
