   (function() {
        window.onload = function(){
        	// Creating a LatLng object containing the coordinate for the center of the map  
          var latlng = new google.maps.LatLng(45.58329, -64.02832);  
          // Creating an object literal containing the properties we want to pass to the map  
          var options = {  
          	zoom: 5,
          	center: new google.maps.LatLng(45.58329, -64.02832),
          	mapTypeId: google.maps.MapTypeId.ROADMAP
          };    
          // Calling the constructor, thereby initializing the map  
          var map = new google.maps.Map(document.getElementById('map'), options);  
                    
		  // The Lakes Golf Club
          var marker2 = new google.maps.Marker({
            position: new google.maps.LatLng(45.975015,-60.435609), 
            map: map,
            title: 'The Lakes Golf Club',
			icon: '/images/icons/google-map.png'
          });
		  
          // Creating The Popup Window
          var infowindow2 = new google.maps.InfoWindow({
            content: '<div class="googleAddress"><p><strong>The Lakes Golf Club</strong><br>5101 Highway #4<br>Ben Eoin, Cape Breton<br>Nova Scotia, Canada B9A 3L1<br><br><strong>Phone</strong> 902-828-4653<br><strong>Fax</strong> 902-828-2550</p></div>'
          });
          
          // Add a click event to the marker
          google.maps.event.addListener(marker2, 'click', function() {
            // Open the popup window
          	infowindow2.open(map, marker2);
          });		  
      	}
      })();		