var gmap={
	
	map:'',
	opt:'',
	mred:'',
	mshadow:'',
	mshape:'',
	marker:new Array(),
	latlng:new Array(),
	info:new Array(),
	
	init:function(){
		
		root=this;
		
		this.opt = {
			zoom: 9,
			center: new google.maps.LatLng(53.42577298098172, -1.3544726371765137),
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		  
		this.map = new google.maps.Map(document.getElementById("gmap"), this.opt);
		
		this.mred = new google.maps.MarkerImage('/apps/gmap/images/marker_red.png', new google.maps.Size(19, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34));
  		this.mshadow = new google.maps.MarkerImage('/apps/gmap/images/marker_shadow.png',  new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34));
  		this.mshape = { coord: [1, 1, 1, 34, 19, 34, 19 , 1], type: 'poly' };
		
		
		//ADD POSTCODE MARKER
		this.latlng[0] = new google.maps.LatLng(53.42577298098172, -1.3544726371765137);
		
		this.marker[0] = new google.maps.Marker({
			position: this.latlng[0],
			map: this.map,
			title: 'Kalcrest',
			icon: this.mred,
			shadow: this.mshadow,
			shape: this.mshape,
			id: 0
		});

	}

}
