//	HIDES AND OPENS DIV ID TAGS THAT CONTAIN TEXT

//	Declaring variables for the function "change_text(name)"
var turn_on_off_var = 1;
var current_bio	= 'about';
var current_bio_id;
var bio_id;


// This functions switches out the bio's for the management team, this called from the flashd document
function change_text(name)	{
	current_bio_id=document.getElementById(current_bio);		// Gets the name of the previously selected person from flash
	current_bio_id.style.display='none';		// Hides the bio of the previously selected person
	bio_id=document.getElementById(name);		// Gets the name of the selected person from flash
	bio_id.style.display='block';		// Shows the bio of the selected person
	current_bio = name;		// Sets the current_bio variable to the selected person
}
