window.addEvent('domready', function(){new LoadMap('map');});

var LoadMap = new Class({

	initialize : function(map) {
		this.map = map;
		this.__loadMap();

	},

	__loadMap : function() {
		var myMap = new GMap2($(this.map));
		myMap.addControl(new GSmallMapControl());
		myMap.setCenter(new GLatLng(39.67008,-105.20302), 4);
		for (var id = 0; id < markers.length; id++) {
			this.__setMarker(markers[id].latitude, markers[id].longitude, markers[id].name, myMap);
		}
	},

	__setMarker : function(latitude, longitude, description, map) {
		var myMap;
		var marker = new GMarker(new GLatLng(latitude, longitude));
		GEvent.addListener(marker, 'click', 
			function() {
				marker.openInfoWindowHtml(description);
			}
		);

		map.addOverlay(marker);
	}

});

var markers = [
	{
		'latitude' : 38.622958,
		'longitude' : -90.191242,
		'name' : '<b>Busch Stadium</b><br/>Home of the 2006 World Champion St. Louis Cardinals<br/><a href=\'http://www.stlcardinals.com\' target=\'_blank\'>Cardinals Homepage</a>'
	},
	{
		'latitude' : 38.648072,
		'longitude' : -90.26086,
		'name' : '<b><a href=\'http://www.dineatduffs.com\'>Duff\'s Restaurant</a></b><br/>GREAT food, GREAT service...an IsaZig favorite!<br/>Don\'t leave without having a \"Bear Paw\"!<br/>  You can thanks us later :)'
	},
	{
		'latitude' : 37.7426,
		'longitude' : -122.4402,
		'name' : '<b><a href=\'http://www.arribaadventures.com\' target=\'_blank\'>Arriba Adventures</a></b> - <i>A Different Trip Altogether</i><br/>Visit Arriba Adventures for exciting trips that range<br/>from exciting day trips hiking to longer trips overseas!'
	},
	{
		'latitude' : 39.67008,
		'longitude' : -105.20302,
		'name' : '<b>Red Rocks  Amphitheater</b><br/>Has to be the coolest place<br/> to see any show!'
	},
	{
		'latitude' : 41.898537,
		'longitude' : -87.623915,
		'name' : '<b><a href=\'http://www.signatureroom.com/\' target=\'_blank\'>John Hancock Building</a></b><br/>A night on the 95th is a<br/> must if you go to Chicago just once!'
	},
	{
		'latitude' : 39.719749,
		'longitude' : -107.0361,
		'name' : '<b>Gypsum</b><br/>Just a great place to be!'
	},
	{
		'latitude' : 34.082263,
		'longitude' : -118.375607,
		'name' : '<b><a href=\'http://www.agorestaurant.com\' target=\'_blank\'>AGO</a></b><br/>A fond memory on a vacation...'
	},
	{
		'latitude' : 38.520172,
		'longitude' : -90.362537,
		'name' : '<b><a href=\'http://www.concordsandvolleyball.com\' target=\'_blank\'>Concord Sand Volleyball</a></b><br/>If my team loses, I still get to make sand castles :)'
	},
	{
		'latitude' : 38.9106,
		'longitude' : -90.156,
		'name' : '<b><a href=\'http://www.kateriney.com\' target=\'_blank\'>Kate Riney - Realtor &reg;</a></b><br/>If you\'re looking in the Riverbend Area,<br/> Kate will find you the perfect place!'
	},
	{
		'latitude' : 38.3882,
		'longitude' : -90.4205,
		'name' : '<b><a href=\'http://www.freshmushroomfarm.com\' target=\'_blank\'>Fresh Mushroom Farm</a></b><br/>The best provider of  fresh mushrooms<br/> and produce for many regional restuarants!'
	}	
	
];

