<!--

var boardBio = ["boardBio_1","boardBio_2","boardBio_3","boardBio_4","boardBio_5","boardBio_6","boardBio_7","boardBio_8","boardBio_9"];
var boardPic = ["boardInfo_1","boardInfo_2","boardInfo_3","boardInfo_4","boardInfo_5","boardInfo_6","boardInfo_7","boardInfo_8","boardInfo_9"];
var region = ["subRegion_1","subRegion_2","subRegion_3","subRegion_4","subRegion_5"];
var EMCbio = ["guestBio_1","guestBio_2","guestBio_3","guestBio_6","guestBio_7","guestBio_8","guestBio_9","guestBio_10"];
var EMCPic = ["guestInfo_1","guestInfo_2","guestInfo_3","guestInfo_6","guestInfo_7","guestInfo_8","guestInfo_9","guestInfo_10"];

function diplayBoardBio(id)
{
	var obj = document.getElementById(id);
	if(obj.style.display == "block")
	{
		obj.style.display = "none";
	}
	else{
		// first make sure all the tabs are hidden     
			for(i=0; i < boardBio.length; i++){
			  var obj = document.getElementById(boardBio[i]);
			  obj.style.display = "none";
			}

		// show the tab we're interested in
			var obj = document.getElementById(id);
			obj.style.display = "block";
		}
}

function changeBoardClass(id)
{
	var obj = document.getElementById(id);
	if( obj.className == "guestInfoON")
	{
		obj.className = "guestInfo";
	}
	else{   
			for(i=0; i < boardPic.length; i++){
			  var obj = document.getElementById(boardPic[i]);
			  obj.className = "guestInfo";
			}

		// show the tab we're interested in
			var obj = document.getElementById(id);
			obj.className = "guestInfoON";
		}
}

function diplayRegion(id)
{
	var obj = document.getElementById(id);
	if(obj.style.display == "block")
	{
		obj.style.display = "none";
	}
	else{
	// first make sure all the tabs are hidden
        for(i=0; i < region.length; i++){
          var obj = document.getElementById(region[i]);
          obj.style.display = "none";
        }

	// show the tab we're interested in
        var obj = document.getElementById(id);
        obj.style.display = "block";
		}
}

function diplayBio(id)
{
	var obj = document.getElementById(id);
	if(obj.style.display == "block")
	{
		obj.style.display = "none";
	}
	else{
		// first make sure all the tabs are hidden     
			for(i=0; i < EMCbio.length; i++){
			  var obj = document.getElementById(EMCbio[i]);
			  obj.style.display = "none";
			}

		// show the tab we're interested in
			var obj = document.getElementById(id);
			obj.style.display = "block";
		}
}

function changeClass(id)
{
	var obj = document.getElementById(id);
	if( obj.className == "guestInfoON")
	{
		obj.className = "guestInfo";
	}
	else{   
			for(i=0; i < EMCPic.length; i++){
			  var obj = document.getElementById(EMCPic[i]);
			  obj.className = "guestInfo";
			}

		// show the tab we're interested in
			var obj = document.getElementById(id);
			obj.className = "guestInfoON";
		}
}

//-->