//MENU

function hideSubs(level)
{
  switch(level)
  {
    case 1:
      showObject('copierSub1','none');
      showObject('copierSub2','none');
      showObject('contactSub1','none');
      showObject('contactSub2','none');
      showObject('contactSub3','none');
    case 2:
      showObject('copierSub1a','none');
      showObject('copierSub1b','none');
      showObject('copierSub2a','none');
      showObject('copierSub2b','none');
  }
  showSubs();
}

function showObject(objectId,objectDisplay)
{
  var objectStyle=getStyleObject(objectId);
  if(objectStyle != false)
  {
    objectStyle.display=objectDisplay;
  }
}

function getStyleObject(objectId)
{
  if (document.getElementById && document.getElementById(objectId))
  {
    return document.getElementById(objectId).style;
  }
  else if (document.all && document.all(objectId))
  {
    return document.all(objectId).style;
  }
  else
  {
    return false;
  }
}


//END MENU