
function sspToggleDisplayMode() {
	    	thisMovie("ssp").sspToggleDisplayMode();
		}
		
		/*
			Passes the ID of the album from the XML file
			we want SlideShowPro inside the SWF to load
		*/
		function sspLoadAlbum(album) {
		   	thisMovie("ssp").sspLoadAlbum(album);
		   		    	var otherElementa = document.getElementById('album-3');
		   		    	var otherElementb = document.getElementById('album-4');
		   		    	var otherElementc = document.getElementById('album-5');
		   		    	var otherElementd = document.getElementById('album-6');

	    	otherElementa.className = null;
	    	otherElementb.className = null;
	    	otherElementc.className = null;
	    	otherElementd.className = null;
	    	var currentElement = document.getElementById(album);
	    	currentElement.className = "active";
		}
		
		function thisMovie(movieName) {
			if (navigator.appName.indexOf("Microsoft") != -1) {
				return window[movieName]
			} else {
			    return document[movieName]
			}
		}