/*
$ /js/tt.js | 2007/12/05 15:40 | 2007/12/05 15:53 $
*/

function tt(id) {
  tts = document.getElementById("ttContent").getElementsByTagName("div");

  for (var t = 0; t < tts.length; t++) {
    if (tts[t].className == 'ttIntro') {
      ttIntro = document.getElementById(tts[t].id).style;

      if (tts[t].id == 'ttIntro'+id)
        ttIntro.display = 'none';
      else
        ttIntro.display = 'block';
    }

    if (tts[t].className == 'ttFull') {
      ttFull = document.getElementById(tts[t].id).style;

      if (tts[t].id == 'ttFull'+id)
        ttFull.display = 'block';
      else
        ttFull.display = 'none';
    }
  }
}
