<!-- 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("ac0910","ac1011","ac1112","ac1213");// Put the id's of your hidden divs in this array
var cal_array = new Array("sub4a","sub4b","sub4c","sub4d","sub4e","sub4f","sub5a","sub5b","sub5c","sub5d","sub5e","sub5f","sub6a","sub6b","sub6c","sub6d","sub6e","sub6f","sub7a","sub7b","sub7c","sub7d","sub7e","sub7f");

function displaySubs(the_sub){

	if (document.getElementById(the_sub).style.display==""){

	document.getElementById(the_sub).style.display = "none";

  }

  for (i=0;i<subs_array.length;i++){

	var my_sub = document.getElementById(subs_array[i]);

	my_sub.style.display = "none";

	}

  document.getElementById(the_sub).style.display = "";

  }
  
  
function displayCal(the_cal){

	if (document.getElementById(the_cal).style.display==""){
		document.getElementById(the_cal).style.display = "none";
	}

  for (i=0;i<cal_array.length;i++){
	  var my_cal = document.getElementById(cal_array[i]);
	  my_cal.style.display = "none";
	  }

  document.getElementById(the_cal).style.display = "";


  }
  


//  End --> 