
window.onload=load;
window.onunload=GUnload;

    function load() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("map-canvas"), { size: new GSize(600,500)} );
			map.setUIToDefault();
			map.setCenter(new GLatLng(53.343993,-2.219238), 6);

			markers(document.forms['mainMenu']);
	      }
	    }

    function createMarker(point, description, division) {
		var baseIcon = new GIcon(G_DEFAULT_ICON);
		var numberIcon = new GIcon(baseIcon);
		numberIcon.image = "images/stores/lilchilli.png";
		markerOptions = { icon:numberIcon };
		var marker = new GMarker(point, markerOptions);
		// GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(description);});
		return marker;
	}
	    
	function markers(myForm) {
		map.clearOverlays();
		var html;

		var stockists = new Array;
		var markers = new Array;

		stockists.push("51.732324, 0.468078,Essex County Cricket Club,Chelmsford,http://www.essexcricket.org.uk/pages/intro.php,lilchilli.png");
		stockists.push("50.997969,-1.757383,Cricket-Hockey.com,Salisbury,http://www.cricket-hockey.com,lilchilli.png");
		stockists.push("53.274324,-1.451204,PRO4SPORT,Chesterfield,http://www.pro4sport.co.uk/,lilchilli.png");
		stockists.push("51.193115,-1.268921,Serious Cricket,Basingstoke,http://www.seriouscricket.co.uk,lilchilli.png");
		stockists.push("51.7026811,-0.4129819,Extra Cover Cricket,Abbots Langley,http://www.extracovercricket.co.uk,lilchilli.png");
		stockists.push("51.5289228,-0.1738942,Lords Cricket Shop,Lords Cricket Ground,http://www.shopatlords.com/?page=shop&cid=1,lords-logo.jpg");
		stockists.push("53.1008864,-1.3318681,Owzat Cricket,Alfreton,http://www.owzat-cricket.co.uk/,lilchilli.png");
		stockists.push("53.3718388,-0.6999028,Trent Valley Sports,Upton,http://www.trentvalleysports.co.uk,lilchilli.png");
		stockists.push("51.4838790,0.1063760,Cook & Matthews Sport,London,,cook-matthews.jpg");
		stockists.push("52.6087139,-1.1426634,Terra Sports,Leicester,http://www.terrasport.co.uk/,lilchilli.png");
		stockists.push("51.8889901,0.9040859,More Sports,Colchester,http://www.moresportscolchester.co.uk/,lilchilli.png");

// Geocode with http://maps.google.com/maps/api/geocode/xml?address=Lords+Cricket+Ground+NW8+8QN&sensor=false

		for (var i = 0; i < stockists.length; i++) {
			var description = stockists[i].split(",");
			
			var point = new GLatLng(description[0], description[1]);
			markers[i] = createMarker(point, description[3], "1");
			map.addOverlay(markers[i]);
			html = "<div class='googlebubble'><h5>" + description[2] + "</h5><img src='images/stores/" + description[5] + "' alt='" + description[2] + "'/><p>" + description[3] + "</p><p><a href='" + description[4] + "'>" + description[4] + "</a></p></div>";
			markers[i].bindInfoWindowHtml(html, {maxWidth: 250});
		}
    }
