// showHide
function toggle(e) {
	if(e == "show"){
		document.getElementById('link').className="showDescriptionYes";
  } else{
        document.getElementById('link').className="showDescriptionNo";
  }
}
function toggleOpp(e) {
	if(e == "show"){
		document.getElementById('link').className="showDescriptionYesOpp";
  } else{
        document.getElementById('link').className="showDescriptionNoOpp";
  }
}
function expand(e, t) {
	if(e == "show"){
		document.getElementById('expand' + t).className="deshide";
		document.getElementById('compress' + t).className="desshow";
		document.getElementById('div' + t).className="desshow";
  } else{
		document.getElementById('expand' + t).className="desshow";
		document.getElementById('compress' + t).className="deshide";
		document.getElementById('div' + t).className="deshide";
  }
}
/* Default page should work without Javascript Enabled. If Javascript Enabled close list, else stay open */
function startCollapse(){
	expand('hide', 'a');
	expand('hide', 'b');
	expand('hide', 'c');
	expand('hide', 'd');
	expand('hide', 'e');
	expand('hide', 'f');
	expand('hide', 'g');
}
