// JavaScript Document
function initialize() {
	var latlng = new google.maps.LatLng(52.402197,1.299183);
	var myOptions = {
	  zoom: 10,
	  center: latlng,
	  scaleControl: true,
	  mapTypeId: google.maps.MapTypeId.ROADMAP,
	  streetViewControl: true
	};
	
	var map = new google.maps.Map(document.getElementById("googlemap"), myOptions);
	
	// Create a marker
	var marker = new google.maps.Marker({  
	  position: new google.maps.LatLng(52.402197,1.299183),  
	  map: map,
	  title: 'The Tudor Bakehouse, The Thoroughfare, Harleston, Norfolk, IP20 9AH',  
	  clickable: true,
	  icon: '../images/icon.png'
	});
	
	
		// Create a marker
	var marker = new google.maps.Marker({  
	  position: new google.maps.LatLng(52.401762,1.298651),  
	  map: map,
	  title: 'The Tudor Bakehouse, 1 The Market Place, Harleston, Norfolk, IP20 9AD',  
	  clickable: true,
	  icon: '../images/icon.png'
	});
	
		// Create a marker
	var marker = new google.maps.Marker({  
	  position: new google.maps.LatLng(52.320730,1.146024),  
	  map: map,
	  title: 'The Tudor Bakehouse, 11 Broad Street, Eye, Suffolk, IP23 7AF',  
	  clickable: true,
	  icon: '../images/icon.png'
	});
	
		// Create a marker
	var marker = new google.maps.Marker({  
	  position: new google.maps.LatLng(52.377113,1.108225),  
	  map: map,
	  title: 'The Tudor Bakehouse, 15a Market Hill, Diss, Norfolk, IP22 9AD',  
	  clickable: true,
	  icon: '../images/icon.png'
	});
	
	
	// Add pop-up window to map
	google.maps.event.addListener(marker, 'click', function() {
	  infowindow.open(map,marker);
	});
} // End of initialise function


