//<![CDATA[    
	function initialize2() {
		//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);
		  var center_latlng = new google.maps.LatLng(53.282968, -2.386653);
		
		 var all_options = {
                  navigationControl: true,
                  navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},
                  navigationControl:true,
                  navigationControlOptions: google.maps.NavigationControlStyle.HORIZONTAL_BAR,
                  scaleControl: false,
                  zoom: 7,
                  center: center_latlng,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
                }
		
		var all_map = new google.maps.Map(document.getElementById("map5"), all_options);
    
		//info window

		   //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);*/
  }
//]]>

