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

$(function() {
	$('.supplier').hide();
	$('.combobox').change(function(){
		var county = $('select').val();
		$('.supplier').hide();
		$('.' + county).show();
	});
	
	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,http://www.cookandmatthewssport.co.uk,cook-matthews.jpg");
		stockists.push("51.8889901,0.9040859,More Sports,Colchester,http://www.moresportscolchester.co.uk/,lilchilli.png");
		stockists.push("53.3659821,-0.0063377,CoJo's,Louth<br />Lincolnshire,http://www.cojos.com/,lilchilli.png");
		stockists.push("50.8741720,0.0168699,Inter Sport of Lewes,Lewes<br />East Sussex,http://www.gameforlife.co.uk/,lilchilli.png");
		stockists.push("51.3635675,0.6072007,Rainham Sports,Rainham<br />Kent,http://www.towersports.net/,lilchilli.png");
		stockists.push("52.7859596,-1.2188672,Talent Cricket,Loughborough<br />Leicestershire,http://www.talentcricket.co.uk/,lilchilli.png");
		stockists.push("51.8774757,0.5484436,Pineapple Sports,Braintree<br />Essex,http://www.pineapplesports.co.uk/,lilchilli.png");
		stockists.push("51.0189517,-3.0995302,Somerset County Sports,Taunton<br />Somerset,http://www.somerset-countysports.com/,lilchilli.png");
		stockists.push("53.3201690,-0.9418608,Batting 4 6,Reford<br />Nottinghamshire,http://www.batting46.com/,lilchilli.png");
		stockists.push("50.8288480,-0.3754999,Broadwater Sports,Worthing<br />West Sussex,http://www.broadwatersports.co.uk/,lilchilli.png");
		stockists.push("52.7077157,0.4069163,Wicket Sports,West Winch<br />Norfolk,http://www.wicketsports.co.uk/,lilchilli.png");
		stockists.push("51.2673456,1.0897578,Kent County Cricket Shop,Canterbury<br />Kent,http://www.kentcountyshop.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});
		}
    }
});

