				// Creating a LatLng object containing the coordinate for the center of the map  
				var latlng = new google.maps.LatLng(-37.747360, 145.025);  

				// Creating an object literal containing the properties we want to pass to the map  
				var options = {  
				  zoom: 14,  
				  center: latlng,  
				  mapTypeId: google.maps.MapTypeId.ROADMAP  
				};  
				// Calling the constructor, thereby initializing the map  
				var map = new google.maps.Map(document.getElementById('dmap'), options); 
				
				
				// Creating a marker and positioning it on the map  
				var marker1 = new google.maps.Marker({  
				  position: new google.maps.LatLng(-37.746342, 145.015782),  
				  icon: 'http://lodgebros.com.au/images/red_a.png',
				  title: 'Display Centre',
				  map: map  
				});  

				// Creating a marker and positioning it on the map  
				var marker2 = new google.maps.Marker({  
				  position: new google.maps.LatLng(-37.747377, 145.033272),  
				  icon: 'http://lodgebros.com.au/images/red_b.png', 
				  title: 'Factory Location',
				  map: map  
				});  
				
