GPamaya = {
	map: null,
	cnt: null,
	map_elm: null,
	zoom: null,
	lat: null,
	lng: null,
	icon: null,
	marker: null,
	tpl_dir: null,
	init: function () {
		GPamaya.map_elm = 'map';
		GPamaya.zoom = 16;
		GPamaya.lat = '53.317433';
		GPamaya.lng = '-3.776561';
		GPamaya.tpl_dir = 'http://new.pamaya.com/wp-content/themes/pamaya/images/'
	},
	load: function () {
		GPamaya.init ();
		if (GBrowserIsCompatible()) {
			GPamaya.map = new GMap2(document.getElementById(GPamaya.map_elm));
			GPamaya.cnt = new GLatLng (GPamaya.lat, GPamaya.lng);
			GPamaya.map.setCenter (GPamaya.cnt, GPamaya.zoom);
        	GPamaya.icon = new GIcon(G_DEFAULT_ICON, GPamaya.tpl_dir + 'marker.png');
        	GPamaya.icon.shadow = GPamaya.tpl_dir + 'shadow.png';
        	GPamaya.icon.iconSize = new GSize(30,30);
        	//GPamaya.icon.shadowSize = new GSize(50,50);
        	GPamaya.icon.iconAnchor = new GPoint(15, 10);
			GPamaya.icon.transparent = null;
			GPamaya.icon.mozPrintImage = null;
			GPamaya.icon.printImage = null;
        	GPamaya.marker = new GMarker(GPamaya.cnt, {icon: GPamaya.icon});
        	GPamaya.map.addOverlay (GPamaya.marker);
		}
	}
}