var Site = {
	start: function(){
		document.getElementById('esteban').onclick=function() {
			document.getElementById('esteban').className = 'Bio';
			document.getElementById('justin').className = 'Bio EstebanFocus';
			document.getElementById('michael').className = 'Bio EstebanFocus';
		}
		document.getElementById('justin').onclick=function() {			
			document.getElementById('esteban').className = 'Bio JustinFocus';
			document.getElementById('justin').className = 'Bio';
			document.getElementById('michael').className = 'Bio JustinFocus';
		}
		document.getElementById('michael').onclick=function() {			
			document.getElementById('esteban').className = 'Bio MichaelFocus';
			document.getElementById('justin').className = 'Bio MichaelFocus';
			document.getElementById('michael').className = 'Bio';
		}
	}
};
			
window.addEvent('load', Site.start);