
// google map office location
// -------------------------------


    var map = new GMap(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
	//map.addControl(new GSmallZoomControl());
    map.centerAndZoom(new GPoint(-5.6,50.110000), 6);
			map.addControl(new GScaleControl());
			map.addControl(new GOverviewMapControl());
			map.addControl(new GMapTypeControl());
    
    // Create our "tiny" marker icon
    var icon = new GIcon();
    //icon.image = "images/mapmarker.gif";
	icon.image = "http://www.2forestreet.co.uk/images/location_map/marker_logo.png";
    icon.shadow = "http://www.2forestreet.co.uk/images/location_map/marker_logo_shadow.png";
    icon.iconSize = new GSize(19, 28);
    icon.shadowSize = new GSize(44, 28);
    icon.iconAnchor = new GPoint(10, 28);
    icon.infoWindowAnchor = new GPoint(9, 1);
    
	
    // Creates one of our tiny markers at the given point
    function createMarker(point,name,page,description) {
      var marker = new GMarker(point, icon);
      map.addOverlay(marker);
      GEvent.addListener(marker, "click", function() {
      marker.openInfoWindowHtml("<div style='width: 300px; height: 150px;'><div class='googlemapTitle'><span class='black_14pt_bold'>" + name + "</span></div><div class='googlemapText'><span class='grey_dark_12pt'>" + description + "</span></div><div class='googlemapImage'><img src='http://www.2forestreet.co.uk/images/location_map/2_fore_street_thumb.jpg' width='75' height='100'></div></div>");
      });
    }
createMarker(new GPoint(-5.53922,50.083456),'2 Fore Street restaurant','','2 Fore Street, Mousehole, Penzance, Cornwall, United Kingdom, TR19 6QU');


