// JavaScript Document
function loadMap(markerToOpen) {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());	
		map.addControl(new GMapTypeControl());
		map.addControl(new GOverviewMapControl());
		map.setCenter(new GLatLng(50.43, -4.4945), 9);
		var trelaskeMarkers = new Array;
		trelaskeMarkers.push(new Array (50.3562534, -4.4567046, "<b>Looe</b><br>Cornwall<br><a href='/hotel-near-looe.html'>View details</a>", 0));
		trelaskeMarkers.push(new Array (50.3315086, -4.5195280, "<b>Polperro</b><br>Cornwall<br><a href='/hotel-near-polperro.html'>View details</a>", 1));
		trelaskeMarkers.push(new Array (50.3673828, -4.6918969, "<b>Eden Project</b><br>Bodelva<br>St Austell<br>Cornwall PL24 2SG<br><a href='/hotel-near-the-eden-project.html'>View details</a>", 2));
		trelaskeMarkers.push(new Array (50.6634695, -4.7426236, "<b>Tintagel, King Arthurs castle</b><br>Cornwall<br><a href='/hotel-near-tintagel.html'>View details</a>", 3));
		trelaskeMarkers.push(new Array (50.39262431049467, -4.426674842834473, "<b>Looe Golf Club</b><br>Bin Down<br>No Mans Land<br>Looe<br>Cornwall PL13 1PX<br><a href='/hotel-near-looe-golf-club.html'>View details</a>", 4));
		trelaskeMarkers.push(new Array (50.538692, -4.94118, "<b>Padstow</b><br>Cornwall<br><a href='/hotel-near-padstow.html'>View details</a>", 5));
		trelaskeMarkers.push(new Array (50.6567573, -4.4533439, "<b>Launceston Castle</b><br>Castle Lodge<br>Guildhall Square<br>Launceston<br>Cornwall PL15 7DR<br><a href='/hotel-near-launceston-castle.html'>View details</a>", 6));
		trelaskeMarkers.push(new Array (50.339168, -4.2127589, "<b>Mount Edgcombe</b><br>Cremyll<br>Torpoint<br>Cornwall<br>PL10 1HZ<br><a href='/hotel-near-mount-edgcumbe.html'>View details</a>", 7));
		trelaskeMarkers.push(new Array (50.1539847, -5.0685063, "<b>Trebah Gardens</b><br>Mawnan Smith<br>Nr Falmouth<br>Cornwall TR11 5JZ<br><a href='/hotel-near-trebah-gardens.html'>View details</a>", 8));
		trelaskeMarkers.push(new Array (50.1560087, -5.0710795, "<b>Falmouth</b><br>Cornwall<br><a href='/hotel-near-looe.html'>View details</a>", 9));
		trelaskeMarkers.push(new Array (50.3936932, -4.8080521, "<b>The Lost Gardens of heligan</b><br>Pentewan<br>St.Austell<br>Cornwall<br>United Kingdom PL26 6EN<br><a href='/hotel-near-the-lost-gardens-of-heligan.html'>View details</a>", 10));
		trelaskeMarkers.push(new Array (50.4484080, -4.7011020, "<b>Lanhydrock</b><br>Bodmin<br>Cornwall<br>PL30 5AD<br><a href='/hotel-near-lanhydrock.html'>View details</a>", 11));
		trelaskeMarkers.push(new Array (50.6840177, -4.6929224, "<b>Boscastle</b><br>Cornwall<br><a href='/hotel-near-boscastle.html'>View details</a>", 12));
		trelaskeMarkers.push(new Array (50.117028375859924, -5.477972030639648, "<b>St Micheal's Mount</b>Marazion<br>Cornwall TR17 0EF<br><a href='/hotel-near-st-michaels-mount.html'>View details</a>", 13));
		trelaskeMarkers.push(new Array (50.593919, -4.829945, "<b>Port Isaac</b><br>Cornwall<br><a href='/hotel-near-port-isaac.html'>View details</a>", 14));
		trelaskeMarkers.push(new Array (50.3392158228155, -4.4659423828125, "<b>The South West Coast path</b><br><a href='/hotel-near-the-south-west-coast-path.html'>View details</a>", 15));
		trelaskeMarkers.push(new Array (50.4228089, -4.3299989, "<b>Cotehele House</b><br>St Dominick<br>near Saltash<br>Cornwall PL12 6TA<br><a href='/hotel-near-cotehele.html'>View details</a>", 16));
		trelaskeMarkers.push(new Array (50.3656944, -4.1216757, "<b>National Marine Aquarium</b><br>Rope Walk<br>Plymouth<br>PL4 0LF<br><a href='/hotel-near-the-national-aquarium-plymouth.html'>View details</a>", 17));
		trelaskeMarkers.push(new Array (50.1657526, -5.4081406, "<b>Paradise Park Widlife Sanctuary</b><br>16 Trelissick Road<br>Hayle<br>Cornwall TR27 4HB<br><a href='/hotel-near-paradise-park.html'>View details</a>", 18));		
		trelaskeMarkers.push(new Array (50.3466838, -4.8186279, "<b>Pine Lodge Gardens</b><br>Holmbush<br>St Austell<br>Cornwall PL25 3RQ<br><a href='/hotel-near-pine-lodge-gardens-and-nursery.html'>View details</a>", 19));



		function createMarker(point,name,html) {
			var marker = new GMarker(point);
			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(html);
			});
			return marker;
		}
		
		var gmarkers = [];    
		for (var i = 0; i < trelaskeMarkers.length; i++) {	
			var marker = createMarker(new GLatLng(trelaskeMarkers[i][0],trelaskeMarkers[i][1]),i,trelaskeMarkers[i][2]);
			gmarkers.push(marker);	
		}
		var mm = new GMarkerManager(map);		
		mm.addMarkers(gmarkers,0,17);
		mm.refresh();			   
		
		var trelaskeIcon = new GIcon();
		trelaskeIcon.image = "/images/map_pointer.png";
		trelaskeIcon.shadow = "/images/map_pointer_shad.png";
		trelaskeIcon.iconSize = new GSize(122, 52);
		trelaskeIcon.shadowSize = new GSize(128, 58);
		trelaskeIcon.iconAnchor = new GPoint(20, 52);
		trelaskeIcon.infoWindowAnchor = new GPoint(5, 1);
		markerOptions = { icon:trelaskeIcon };
		var trelaskeMarker = new GMarker(new GLatLng(50.3565, -4.4901), markerOptions);	
		map.addOverlay(trelaskeMarker);
		if (markerToOpen!=-1) {
			var htmlNode = document.createElement('span');
			htmlNode.innerHTML = trelaskeMarkers[markerToOpen][2];
			map.openInfoWindow(new GLatLng(trelaskeMarkers[markerToOpen][0],trelaskeMarkers[markerToOpen][1]),htmlNode);	
		}
	}
}
