		function initialize() {
			var latlng = new google.maps.LatLng(52.256627, -2.224388);
			var settings = {
				zoom: 15,
				center: latlng,
				mapTypeControl: true,
				mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
				navigationControl: true,
				navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
				mapTypeId: google.maps.MapTypeId.ROADMAP};
			var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
			
			
			
			var companyImage = new google.maps.MarkerImage('images/mini-logo.png',
				new google.maps.Size(205,73),
				new google.maps.Point(0,0),
				new google.maps.Point(240,70)
			);
			
			var companyShadow = new google.maps.MarkerImage('images/logo_shadow.png',
				new google.maps.Size(205,22),
				new google.maps.Point(0,0),
				new google.maps.Point(190,20));
			
			var companyPos = new google.maps.LatLng(52.256627, -2.224388);
			
			var companyMarker = new google.maps.Marker({
				position: companyPos,
				map: map,
				icon: companyImage,
				shadow: companyShadow,
				title:"Park Farm Shoot",
				zIndex: 3});
		};
		
		
		function initializeSmall() {
			var latlng = new google.maps.LatLng(52.257627, -2.230388);
			var settings = {
				zoom: 15,
				center: latlng,
				mapTypeControl: true,
				mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
				navigationControl: true,
				navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
				mapTypeId: google.maps.MapTypeId.ROADMAP};
			var map = new google.maps.Map(document.getElementById("map_canvasSmall"), settings);
			
			
			
			var companyImage = new google.maps.MarkerImage('images/mini-logo.png',
				new google.maps.Size(205,73),
				new google.maps.Point(0,0),
				new google.maps.Point(240,70)
			);
			
			var companyShadow = new google.maps.MarkerImage('images/logo_shadow.png',
				new google.maps.Size(205,22),
				new google.maps.Point(0,0),
				new google.maps.Point(190,20));
			
			var companyPos = new google.maps.LatLng(52.256627, -2.224388);
			
			var companyMarker = new google.maps.Marker({
				position: companyPos,
				map: map,
				icon: companyImage,
				shadow: companyShadow,
				title:"Park Farm Shoot",
				zIndex: 3});
		}
