//==============================================================
function expandContract(thisDiv) {
  if (thisDiv.style.display=="none") {
    thisDiv.style.display="";
  }
  else {
    thisDiv.style.display="none";
  }
}

function mouseovercolor(thisDiv, newColor) {
    thisDiv.style.color = newColor;
}

function mouseoverboldcolor(thisDiv, newColor) {
    thisDiv.style.color = newColor;
    thisDiv.style.fontWeight = "bold"
}

function mouseoutcolor(thisDiv, newColor) {
    thisDiv.style.color = newColor;
}

function mouseoutboldcolor(thisDiv, newColor) {
    thisDiv.style.color = newColor;
    thisDiv.style.fontWeight = "bold"
}

function mouseoverbold(thisDiv) {
	thisDiv.style.fontWeight ="bold"
}

function mouseoutbold(thisDiv) {
	thisDiv.style.fontWeight ="bold"
}

