//<![CDATA[    
	function initialize() {
		//map position
    	var crewe_latlng = new google.maps.LatLng(53.087452, -2.429523);
		var stafford_latlng = new google.maps.LatLng(52.828251, -2.108999);
		var manchester_latlng = new google.maps.LatLng(53.482968, -2.146653);
		
		//crewe options
		var crewe_options = {		  
		  navigationControl: true,	  
		  navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},		  
		  navigationControl:true,
  		  navigationControlOptions: google.maps.NavigationControlStyle.HORIZONTAL_BAR,
		  scaleControl: false,
		  zoom: 13,
		  center: crewe_latlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		//stafford options
		var stafford_options = {		  
		  navigationControl: true,	  
		  navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},		  
		  navigationControl:true,
  		  navigationControlOptions: google.maps.NavigationControlStyle.HORIZONTAL_BAR,
		  scaleControl: false,
		  zoom: 13,
		  center: stafford_latlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		//manchester options
		var manchester_options = {		  
		  navigationControl: true,	  
		  navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},		  
		  navigationControl:true,
  		  navigationControlOptions: google.maps.NavigationControlStyle.HORIZONTAL_BAR,
		  scaleControl: false,
		  zoom: 13,
		  center: manchester_latlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		 var all_options = {
                  navigationControl: true,
                  navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},
                  navigationControl:true,
                  navigationControlOptions: google.maps.NavigationControlStyle.HORIZONTAL_BAR,
                  scaleControl: false,
                  zoom: 6,
                  center: manchester_latlng,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
                }
		
		var crewe_map = new google.maps.Map(document.getElementById("map1"), crewe_options);
		var stafford_map = new google.maps.Map(document.getElementById("map2"), stafford_options);
		var manchester_map = new google.maps.Map(document.getElementById("map3"), manchester_options);
		var all_map = new google.maps.Map(document.getElementById("map5"), all_options);
    
		//info window
		/*var infowindow = new google.maps.InfoWindow(
		{ content: "<span style='font-family:arial; font-size:12px;'><b>Omega, the National Association for End of Life Care</b>,<br />London House,<br />Town Walls,<br />Shrewsbury,<br />SY1 1TX</span>",
		  //size: new google.maps.Size(200,200)
		});*/
		
		//crewe marker	
		var crewe_marker = new google.maps.Marker({
			position: crewe_latlng, 
			map: crewe_map,
			title:"The Weston Centre"	
		});
		//stafford marker	
		var stafford_marker = new google.maps.Marker({
			position: stafford_latlng, 
			map: stafford_map,
			title:"Tollgate Business Park"	
		});
		//manchester marker	
		var manchester_marker = new google.maps.Marker({
			position: manchester_latlng, 
			map: manchester_map,
			title:"Greenside Trading Centre"		
		});


		   //crewe marker
                var crewe_marker2 = new google.maps.Marker({
                        position: crewe_latlng,
                        map: all_map,
                        title:"The Weston Centre"
                });
                //stafford marker
                var stafford_marker2 = new google.maps.Marker({
                        position: stafford_latlng,
                        map: all_map,
                        title:"Tollgate Business Park"
                });
                //manchester marker
                var manchester_marker2 = new google.maps.Marker({
                        position: manchester_latlng,
                        map: all_map,
                        title:"Greenside Trading Centre"
                });



		
		
		//marker click event
		/*google.maps.event.addListener(crewe_marker, 'click', function() {
			infowindow.open(map,marker);
		});
		infowindow.open(map,marker);*/
  }
//]]>

