// EXPAND/COLLAPSE HERE
menus_array = new Array ('ddPrjName', 'ddPrjDocs', 'ddPrjInfo', 'ddNForm');
menus_status_array = new Array ();// REMEMBER STATE
for (var i= 1; i< 100; i++) {
  	menus_array.push('ddPrjName' +i);
}

eimg_close = '../images/collapse.gif';
eimg_open = '../images/expand.gif';
eimg_close2 = '../images/collapse2.gif';
eimg_open2 = '../images/expand2.gif';

function showHideExpand (theid) {
	
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    var imgid = theid+'Button';
    var button_id = document.getElementById(imgid);
    if (menus_status_array[theid] != 'show') {
      button_id.setAttribute ('src', eimg_close);
      switch_id.className = 'showSwitch';
	  menus_status_array[theid] = 'show';
    }else{
      button_id.setAttribute ('src', eimg_open);
      switch_id.className = 'hideSwitch';
	  menus_status_array[theid] = 'hide';
    }
  }
}

function showHideExpand2 (theid) {
	
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    var imgid = theid+'Button';
    var button_id = document.getElementById(imgid);
    if (menus_status_array[theid] != 'show') {
      button_id.setAttribute ('src', eimg_close2);
      switch_id.className = 'showSwitch';
	  menus_status_array[theid] = 'show';
    }else{
      button_id.setAttribute ('src', eimg_open2);
      switch_id.className = 'hideSwitch';
	  menus_status_array[theid] = 'hide';
    }
  }
}
