﻿function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuHover";
  d.className = "menuHover";
}

function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuNormal";
  d.className = "menuNormal";
}

function expandInt(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuHoverInt";
  d.className = "menuHoverInt";
}

function collapseInt(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuNormalInt";
  d.className = "menuNormalInt";
}
