/*
  © 2007 Thomson Carswell.  All Rights Reserved
  Thomson Carswell Proprietary and Confidential
*/

/****************************************************
* aboutUs.js - support code for About Us page      *
****************************************************/

function hideAll()
{
	document.getElementById("initial").style.display = "none";
	document.getElementById("previous_top").style.display = "none";
	for (var i=1; i<=26; i++)
	{
		document.getElementById(("author_" + i)).style.display = "none";
	}
	document.getElementById("previous_bot").style.display = "none";
}

function showAll()
{
	document.getElementById("initial").style.display = "inline";
	document.getElementById("previous_top").style.display = "inline";
	for (var i=1; i<=26; i++)
	{
		document.getElementById(("author_" + i)).style.display = "inline";
	}
	document.getElementById("previous_bot").style.display = "inline";
}

function resetView()
{
	hideAll();
	document.getElementById("initial").style.display = "inline";

}

function showGroup(group)
{
	hideAll();
	document.getElementById("previous_top").style.display = "inline";
	document.getElementById(("author_" + group)).style.display = "inline";
	document.getElementById("previous_bot").style.display = "inline";
}

