function boldness()
{
  var target = $('tsi').down('img.large');
  if(target!=undefined)
  {
    target.show();
    if(is_tsi_main)
    {
      $('navi').makePositioned();
      $('navi').setStyle({zIndex: 100});
      target.setStyle({top: '-14px'});
    }
  }
  window.setTimeout('boldless()', 2000+Math.random()*8000);
}
function boldless()
{
  $('tsi').down('img.large').hide();
  window.setTimeout('boldness()', 2000+Math.random()*8000);
}
Event.observe(document, 'dom:loaded', function()
{
  if(!is_tsi||is_tsi_main)
    window.setTimeout('boldness()', 2000+Math.random()*8000);
});