/**
 * Initialize the GoogleMaps API to the desired location
 *
 * $Id: googlemaps_init.js 580 2009-09-06 22:11:27Z Dave $
 */
function initialize() {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(53.338404, -2.843800), 14);
        map.setUIToDefault();
        var point = new GLatLng(53.337677,-2.838550);
        map.addOverlay(new GMarker(point));
        map.openInfoWindowHtml(point,'<img src="/images/maplogo.png" />');
    }
}
