$(document).ready(function(){
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(51.502, -0.105593), 16);
map.openInfoWindowHtml(map.getCenter(),
'
8 Boundary Row, London SE1 8HP');
map.setUIToDefault();
}
});
$(document.body).unload(function() {
if (GBrowserIsCompatible()) GUnload();
});