//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(40.068,-83.04874), 11);
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());

var baseIcon        = new GIcon();
baseIcon.shadow     = "http://www.google.com/mapflies/shadow50.png";
baseIcon.iconSize   = new GSize(30, 30);
baseIcon.shadowSize = new GSize(30, 30);

var RND_point = new GLatLng(40.027877, -83.044624);
var RND_icon  			= new GIcon();
    RND_icon.image 		= "http://worthingtonscouts.org/images/roundtable_staff_bs_50.jpg"
    RND_icon.iconSize 		= new GSize(50, 50);
    RND_icon.transparent	= "http://worthingtonscouts.org/images/transparent_50.png"
    RND_icon.iconAnchor 	= new GPoint(0, 50);    
    RND_icon.infoWindowAnchor 	= new GPoint(50, 0); 
    RND_icon.imageMap		=[1,1,1,50,50,50,50,1,1,1]
var RND       = new GMarker(RND_point, RND_icon);
map.addOverlay(RND);
GEvent.addListener(RND, "mouseover", function() {
		RND.openInfoWindowHtml('<h2>December Roundtable</h2> Thursday, Dec. 6, 7:00-9:00 PM<br>Church of Christ <a target="_blank" href="http://maps.google.com/maps?f=q&hl=en&geocode=&q=1130+Fishinger+Road,+Columbus,+OH&ie=UTF8&ll=40.012891,-83.003082&spn=0.178281,0.305901&z=12&iwloc=A&om=1">1130 Fishinger Rd.</a>');
});

var DUB_point = new GLatLng(40.065149, -83.085115);
var DUB_icon  			= new GIcon();
    DUB_icon.image 		= "http://worthingtonscouts.org/images/church_logos/MeadowPark_Logo_50.jpg"
    DUB_icon.iconSize 		= new GSize(50, 50);
    DUB_icon.transparent	= "http://worthingtonscouts.org/images/transparent_50.png"
    DUB_icon.iconAnchor 	= new GPoint(0, 50);    
    DUB_icon.infoWindowAnchor 	= new GPoint(50, 0); 
    DUB_icon.imageMap		=[1,1,1,50,50,50,50,1,1,1]
var DUB       = new GMarker(DUB_point, DUB_icon);
map.addOverlay(DUB);
GEvent.addListener(DUB, "mouseover", function() {
		DUB.openInfoWindowHtml('<h2>Worthington/Dublin Areas</h2>Saturday, Dec. 8, 9:00 AM to Noon<br>Meadow Park Church<br><a target="_blank" href="http://maps.google.com/maps?f=q&hl=en&geocode=&time=&date=&ttype=&q=2425+Bethel+Road,+Columbus,+oh&sll=40.476203,-82.96051&sspn=0.912989,2.548828&ie=UTF8&om=1&ll=40.065149,-83.085115&spn=0.010674,0.019591&z=16&iwloc=addr">2425 Bethel Road</a><br>(Beltloop Bonanza Location)');
		});


}
}
//]]>
