// JavaScript Document
function displaySection(the_section, newclass){
 
  if (document.getElementById(the_section).className=="show"){
    document.getElementById('iacustomnavContainer').className = "iacustomnavContainerHide";
    document.getElementById(the_section).className = "hide";return
  }
    document.getElementById('iacustomnavContainer').className = "iacustomnavContainerShow";
  document.getElementById(the_section).className = "show";
}
