// JavaScript Document

// Yahoo App ID for the map at http://dynamiccontrol.net/contact/index.php
// fX8qolPV34HTQ0PqR0_d7ci4FebZg3fdoYVyoQ_cMTZes3hGFiuaCknOGJQeXP39shAiA0NN9ww-

// Create a Map that will be placed in the "map" div.
var map = new YMap(document.getElementById('map')); 
function startMap(){	
	map.addZoomLong();    		
	var DCSGeoPoint = new YGeoPoint(42.702717, -84.537022);
	map.addOverlay(new YGeoRSS('http://dcs2008.davingranroth.com/scripts/map.xml'));
//	map.drawZoomAndCenter(DCSGeoPoint, 6);
	YEvent.Capture(map,'onEndGeoRSS',function(){map.drawZoomAndCenter(DCSGeoPoint,6);});

}
window.onload = startMap;	


// lat 42.702717
// lon -84.537022
