window.onload = function() {

// MOO.FX OPACITY 
	aboutOpacity = new fx.Opacity('aboutContent', {duration: 1500,  
  	});
		
	aboutOpacity.setOpacity(0);		
}

// HIDE/DISPLAY FUNCTIONS 
function displayAbout() { document.getElementById('aboutContent').style.display = ''; }

function hideAll() {
		document.getElementById('aboutContent').style.display = '';
		}
