<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

	var map;
	var directionsPanel;
	 
    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(47.5366,-52.9438), 15);
		
		var tinyIcon = new GIcon();
		tinyIcon.image = "http://www.seascapeoceanfrontliving.com/images/map_seascape.png";
		//tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		tinyIcon.iconSize = new GSize(100, 18);
		//tinyIcon.shadowSize = new GSize(22, 20);
		tinyIcon.iconAnchor = new GPoint(85, 10);
		tinyIcon.infoWindowAnchor = new GPoint(50, 9);
		
		markerOptions = { icon:tinyIcon };
		
		var point = new GLatLng(47.5366,-52.9438);
		var marker = new GMarker(point, markerOptions);
		map.addOverlay(marker);
		
		var mapControl = new GMapTypeControl();
		map.addControl(mapControl);
		map.addControl(new GLargeMapControl());	
		}		
	}
	
	function toAirport() {
		directionsPanel = document.getElementById("directions");
		directionsPanel.innerHTML = "";
		map.setCenter(new GLatLng(47.555474, -52.827406), 3);
		directions = new GDirections(map, directionsPanel);
		directions.load("47.611714, -52.747338 to 47.5366,-52.9438");
		}
		
	function toHall() {
		directionsPanel = document.getElementById("directions");
		directionsPanel.innerHTML = "";
		map.setCenter(new GLatLng(47.555474, -52.827406), 3);
		directions = new GDirections(map, directionsPanel);
		directions.load("47.560540, -52.712418 to 47.5366,-52.9438");
		}
