function startup()
{

var map = new GMap2(document.getElementById("map"));
var point = new GLatLng(51.406035, -1.306585, 'here', 'text here!');
var label = "Mediasurface House,<br/>Newbury Business Park,<br/>London Road,<br/>Newbury,<br/>RG14 2QA";

var Icon = new GIcon();
Icon.image = "http://preview-com.pepperio.net/assets/Picture/pepper3-15414.png";
Icon.iconSize = new GSize(50, 69);
Icon.iconAnchor = new GPoint(16, 67);
Icon.infoWindowAnchor = new GPoint(16, 67);

markerOptions = { icon:Icon };
map.addMapType(G_HYBRID_MAP);
map.setCenter(new GLatLng(51.4077035, -1.3060855865478515), 15);
map.setMapType(G_HYBRID_MAP);
map.addControl(new GSmallMapControl());

var marker = new GMarker(point,markerOptions);
map.addOverlay(marker);

GEvent.addListener(marker, "click", function() 
{
marker.openInfoWindowHtml(label);
});

}


