function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(53.78318, -2.29577), 13);
		
		 // Creates a marker at the given point with the given number label
        function createMarker(point, number) {
          var marker = new GMarker(point);
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<b>CFH</b><br />The Portal<br /> Bridgewater Close<br /> Bentley Wood<br /> Lancashire<br /> BB11 5TT");
          });
          return marker;
        }
		  var point = new GLatLng(53.78318, -2.2957);				  
          map.addOverlay(createMarker(point, 1));			
    }
}

function sideMenuOver (index_id) {
	document.getElementById(index_id).src = "images/" + index_id + "b.gif"	
}

function sideMenuBack (index_id) {
	document.getElementById(index_id).src = "images/" + index_id + ".gif"			
}

function MovieOnClick(){
alert ("here");
	//document.redirect="cfh-section-page.asp?page=36";
}	