// SECTION LINKS

var SL_BGCOLOR_OUT = "#F0F0F0";
var SL_BGCOLOR_OVER = "#AD62B5";
var SL_COLOR_OUT = "#606060";
var SL_COLOR_OVER = "white";

function clearSection(id)
{
  if (id == currentSectionId) {
    return;
  }

  var sect = document.getElementById(currentSectionId);
  var img = document.getElementById(currentSectionId + "_img");
  var ahref = document.getElementById(currentSectionId + "_href");
  var btm = document.getElementById(currentSectionId + "_btm");

  sect.style.backgroundImage = "url(imgs/box_top_out.gif)";
  sect.style.backgroundColor = SL_BGCOLOR_OUT;
  img.src = eval(currentSectionId + "_out").src;
  ahref.style.color = SL_COLOR_OUT;
  btm.style.backgroundImage = "url(imgs/box_bottom_out.gif)";

  hiLiteSection(id);

  currentSectionId = id;
}

function hiLiteSection(id)
{
  var sect = document.getElementById(id);
  var img = document.getElementById(id + "_img");
  var ahref = document.getElementById(id + "_href");
  var btm = document.getElementById(id + "_btm");

  sect.style.backgroundImage = "url(imgs/box_top_over.gif)";
  sect.style.backgroundColor = SL_BGCOLOR_OVER;
  img.src = eval(id + "_over").src;
  ahref.style.color = SL_COLOR_OVER;
  btm.style.backgroundImage = "url(imgs/box_bottom_over.gif)";
}

