// JavaScript Document

var subs_array = new Array("europe","asisaustralia","germany","france","greece","israel","italy","russia","norway","uk","turkey","southafrica","australia","indonesia","china","korea","japan","singapore","philippines","newzealand","hongkong","ca","hi","or","nv","ut","az","tx","ok","ne","ks","ak","fl","al","tn","nc","va","wi","mi","il","indiana","oh","pa","ny","nj","ct","ma","mexicocity","puertorico","vancouver","montreal","calgary","toronto","ga","co","mn","wa","mo","dc","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 = "";
}



