function initialize() {

	var map = new GMap2(document.getElementById("canvas"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(53.55334, -1.34823), 15);

	var iconOctane = new GIcon(G_DEFAULT_ICON);
	iconOctane.image = "http://www.octane.uk.net/library/images/ui/navigation/maps/marker.png";
	iconOctane.iconSize = new GSize(32, 32);
	iconOctane.iconAnchor = new GPoint(5, 34);
	iconOctane.infoWindowAnchor = new GPoint(17, 2);
                
	markerOptions = { icon:iconOctane };

	var point = new GLatLng(53.55334, -1.34823);
	map.addOverlay(new GMarker(point, markerOptions));

}