function setBios(bio){
	aDiv=document.getElementsByTagName("DIV");
	for(var i=0;i<aDiv.length;++i){
		if(aDiv[i].className=='bios'){
			if(aDiv[i].id==bio || bio=='show_all'){
				aDiv[i].style.display='block';
			}else {
				aDiv[i].style.display='none';
			}
		}
	}
	self.scrollTo(0,0);
}
function council_bios_windowOnLoad(){
	var myMouseEvent_1=document.getElementById('sidebar_members');
	if (myMouseEvent_1.addEventListener) { //if this is a non ie browser then
		myMouseEvent_1.addEventListener ("mouseover",mouseOverEvent,false);
		myMouseEvent_1.addEventListener ("mouseout",mouseOutEvent,false);
	} else if (myMouseEvent_1.attachEvent) {//else if this is an ie browser then
		myMouseEvent_1.attachEvent ("onmouseover",mouseOverEvent);
		myMouseEvent_1.attachEvent ("onmouseout",mouseOutEvent);
	}
};
function mouseOverEvent( e ) {
	if( e ) {
		this.e = e;
	} else {
		this.e = window.event;
	}
	
	if( e.target ) {
		this.target = e.target;
	} else {
		this.target = e.srcElement;
	}
	if(this.target.tagName=='A'){
		this.target.style.textDecoration='underline';
	}
}
function mouseOutEvent( e ) {
	if( e ) {
		this.e = e;
	} else {
		this.e = window.event;
	}
	
	if( e.target ) {
		this.target = e.target;
	} else {
		this.target = e.srcElement;
	}
	this.target.style.textDecoration='none';
}