// JavaScript Document
    function initialize() {
    	photoShufflerLaunch()
    	if (GBrowserIsCompatible()) {
			//create new map object and center it
        	var map = new GMap2(document.getElementById("map_canvas"));
        	map.setCenter(new GLatLng(51.48000,-3.17500), 14);
        	map.setUIToDefault();          
          	//add the marker for our location   
   			var point = new GLatLng(51.47645,-3.15900);
   			var marker = new GMarker(point)
   			map.addOverlay(marker);   
    		//add info bubble to show address
    		var infoText  = '<div style="width:190px; font-size:0.9em;">Cardiff Central Youth Club, <br/> Ocean Way, <br/>CF24 5HF<br/><a href="http://maps.google.com/maps?saddr=&daddr=51.47645,-3.15900">Get Directions</a></div>';
    		GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(infoText  );
	  			}
	  			);			
			marker.openInfoWindowHtml(infoText);		
      		}
      		
    }