function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
var bottomLeft = new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(10,10));
var bottomRight = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10,10));
var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(20,22));
map.setCenter(new GLatLng(51.281726, -0.752957), 13);
map.addControl(new GSmallMapControl(), bottomRight);
map.addControl(new GMapTypeControl(), bottomLeft);
map.addControl(new GScaleControl(), topRight);
var blueIcon = new GIcon(G_DEFAULT_ICON);
blueIcon.image = "http://www.nameblank.com/falcon_marker.png";
blueIcon.iconSize = new GSize(32, 32);
blueIcon.shadow = "http://www.falconfarnborough.com/shadow-falcon_shadow.png";
blueIcon.shadowSize = new GSize(49, 32);
markerOptions = { icon:blueIcon };
var point = new GLatLng(51.281726, -0.752957);
map.addOverlay(new GMarker(point, markerOptions));
}
}