   (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);  
                    
          // Cape Breton University
          var marker = new google.maps.Marker({
            position: new google.maps.LatLng(45.914468,-59.979583), 
            map: map,
            title: 'Point of View Suites',
          });
          
          // Creating The Popup Window
          var infowindow = new google.maps.InfoWindow({
            content: '<div class="googleAddress"><p><strong>Point of View Suites</strong><br>15 Commercial Street Extension<br>Louisbourg, Nova Scotia<br>CanadaB1C 2J4</p><p>Telephone 902-733-2080<br>Toll-Free 1-888-374-VIEW (8439)</p></div>'
          });
          
          // Add a click event to the marker
          google.maps.event.addListener(marker, 'click', function() {
            // Open the popup window
          	infowindow.open(map, marker);
          });
      	}
      })();		

