var map;
var gdir;
var geocoder = null;
function initialize()
{  
map = new GMap2(document.getElementById("map_canvas"));
localSearch = new GlocalSearch();
geocoder = new GClientGeocoder();
var store_location = new GLatLng(53.388371,-1.46606);
map.setCenter(store_location, 12);

map.setUIToDefault();
var ArkIcon = new GIcon();
ArkIcon.image = "images/icon_full.png"; 
ArkIcon.shadow = "images/icon_shaddow.png"; 
ArkIcon.iconSize = new GSize(32,43); 
ArkIcon.shadowSize = new GSize(43, 43); 
ArkIcon.iconAnchor = new GPoint(16, 43);
Ark_Icon = new GMarker(store_location, {icon:ArkIcon});
map.addOverlay(Ark_Icon);	
}

