// JavaScript Document

var subs_array = new Array("CO","CT","FL","GA","IL","IN","KS","KY","MA","MD","MI","MS","NC","NJ","NY","PA","RI","SC","TX","VA","WI","WV","CA","AL","OH","TN","OK","DC","LA","WA","DE","HI","MN","OR","NM","AZ","UT","holder");// Put the id's of your hidden divs in this array

function displaySubs(the_sub){
	 if (document.getElementById(the_sub).style.display==""){
	   document.getElementById(the_sub).style.display = "none";return
  }
  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 = "";
}


