<!--
	function tabFocus(obj){
		tabli = obj;
		taba = obj.childNodes[0];
		tabli.style.background='url(/img/tabs.gif) no-repeat 0 -56px';
		taba.style.background='url(/img/tabs.gif) no-repeat 100% -56px';
	}
	function tabBlur(obj){
		tabli = obj;
		taba = obj.childNodes[0];
		tabli.style.background='url(/img/tabs.gif) no-repeat 0 0px';
		taba.style.background='url(/img/tabs.gif) no-repeat 100% 0px';
	}
	
	function togglebio(id){
		if($("#toggle-"+id).html() == "View Bio"){
			$("#bio-"+id).slideDown("fast");
			$("#toggle-"+id).html("Hide Bio");
			$(document.getElementById("toggle-"+id).parentNode).removeClass("bio-toggle-show");
			$(document.getElementById("toggle-"+id).parentNode).addClass("bio-toggle-hide");
			
		} else {
			$("#bio-"+id).slideUp("fast");
			$("#toggle-"+id).html("View Bio");
			$(document.getElementById("toggle-"+id).parentNode).removeClass("bio-toggle-hide");
			$(document.getElementById("toggle-"+id).parentNode).addClass("bio-toggle-show");
		}
		return false;
	}	
	
-->