// JavaScript Document
    function initialize() {
    	photoShufflerLaunch()
		bankHoliday()
    	if (GBrowserIsCompatible()) {
			//create new map object and center it
        	var map = new GMap2(document.getElementById("map_canvas"));
        	map.setCenter(new GLatLng(51.48759, -3.23394), 14);
        	map.setUIToDefault();          
          	//add the marker for our location   
   			var point = new GLatLng(51.48759, -3.23394);
   			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 Martial Arts Academy, <br/> Norbury Rd, <br/>CF5 3AU<br/><a href="http://maps.google.com/maps?saddr=&daddr=51.48759, -3.23394">Get Directions</a></div>';
    		GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(infoText  );
	  			}
	  			);			
			marker.openInfoWindowHtml(infoText);		
      		}
      		
    }
