function toggleBio(){
	var toTog = document.getElementById('fullBio'); //content
	var toTogL = document.getElementById('bioDis'); //link lower
	var toTogU = document.getElementById('bioDisUpper'); //link upper
	
	if(toTog.className == 'fullBioOff'){
		
		toTog.className = 'fullBioOn';
		toTogL.innerHTML = "View Brief Bio <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
		toTogU.innerHTML = "Brief Bio  <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	
	}else if(toTog.className == 'fullBioOn'){
		toTog.className = 'fullBioOff';
		toTogL.innerHTML = "View Expanded Bio <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
		toTogU.innerHTML = "Full Bio <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	}
}

function togglePractice(){
	var toTog = document.getElementById('fullPrac'); //content
	var toTogL = document.getElementById('pracDis'); //link lower
	
	if(toTog.className == 'fullPracOff'){
		
		toTog.className = 'fullPracOn';
		toTogL.innerHTML = "View Brief Practice <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	
	}else if(toTog.className == 'fullPracOn'){
		toTog.className = 'fullPracOff';
		toTogL.innerHTML = "View Expanded Practice <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	}
}

function toggleIndustry(){
	var toTog = document.getElementById('fullPrac'); //content
	var toTogL = document.getElementById('pracDis'); //link lower
	
	if(toTog.className == 'fullPracOff'){
		
		toTog.className = 'fullPracOn';
		toTogL.innerHTML = "View Brief Industry Description <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	
	}else if(toTog.className == 'fullPracOn'){
		toTog.className = 'fullPracOff';
		toTogL.innerHTML = "View Expanded Industry Description <img border='' src='i/toggle_arrow.gif' width='7'  height='8' alt='' title='' />";
	}
}


