<!-- This script and many more are available free online at -->

<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Created by: http://london-net.net -->

<!-- Begin

var subs_array = new Array("general", "navCounsel", "navInternational", "higher", "special", "admin", "community", "sports");// Put the id's of your hidden divs in this array
  
function displaytable(the_tbl){
	if (document.getElementById(the_tbl).style.display==""){
	document.getElementById(the_tbl).style.display = "none";return
  }
  for (i=0;i<subs_array.length;i++){
	var my_tbl = document.getElementById(subs_array[i]);
	my_tbl.style.display = "none";
	}
  document.getElementById(the_tbl).style.display = "";
}

//  End --> 