function load1() {
  if (GBrowserIsCompatible()) {	
  	var mapDiv1 = document.getElementById( "wp-google-maps-1" );
    var map1 = new GMap2(document.getElementById("wp-google-maps-1"), {size:new GSize(500, 300)});
    map1.checkResize();
    		map1.addMapType(G_PHYSICAL_MAP);
                	map1.setCenter(new GLatLng(54.5, -3.0), 8, G_HYBRID_MAP);
	map1.addControl(new GMapTypeControl(true));
			map1.addControl(new GLargeMapControl());
		// Bind a search control to the map, suppress result list.
    		map1.addControl(new google.maps.LocalSearch(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,20)));
		map1.enableDoubleClickZoom();
	map1.enableScrollWheelZoom();
    map1.enableContinuousZoom();
    map1.getContainer().style.overflow="hidden";

	    
    // Remove handling of default scrolling action
    if ( mapDiv1.addEventListener ){
        mapDiv1.addEventListener( 'DOMMouseScroll', doNotPropagate1,
false );
        disabledDefSWZoom = true ;
    } else {
        mapDiv1.onmousewheel = doNotPropagate1 ;
        disabledDefSWZoom = true ;
    }
  }
}

// Stop page scrolling when inside the map.
function doNotPropagate1( e1 ){
    if ( !e1 ){
        e1 = window.event ;
    }
    e1.returnValue = false;
    e1.cancelBubble = true;
    if ( e1.preventDefault && e1.stopPropagation ){
        e1.preventDefault() ;
        e1.stopPropagation() ;
    }
}
