var YMAPPID = "YUIBlogger";
(function() {
// Create a lat/lon object
var myPoint = new YGeoPoint(38.589162,-109.534018);
// Create a map object 
var map = new YMap(document.getElementById('mapContainer'));
// Add a pan control 
map.addPanControl(); 
// Add a slider zoom control 
map.addZoomLong(); 
// Add map type control
map.addTypeControl();
// set type to SAT
map.setMapType(YAHOO_MAP_HYB);
// Display the map centered on a latitude and longitude 
map.drawZoomAndCenter(myPoint, 5);
})();
