function initLeaders() {
	for(var i = 2; i < 26; i++) {
		var headshot = document.getElementById('h' + i);
		//document.getElementById('h' + i + '-bio').style.display = 'none';
		headshot.onmouseover = function() {
			document.getElementById(this.id + '-bio').style.display = 'block';
			document.getElementById('default-bio').style.display = 'none';
		}
		headshot.onmouseout = function() {
			document.getElementById(this.id + '-bio').style.display = 'none';
			document.getElementById('default-bio').style.display = 'block';
		}
	}
}
document.write('<style type="text/css">.template10 #biography p { display:none;background:transparent; }</style>');
addListener({ onload:initLeaders });