pues no tiene´s más que ponerle un bonito window.status, por ejemplo:
  
Código:
 <html>
<head>
</head>
<script language="javascript">
var texto=":::      QUÉ     -     BONITO     -     ES     -      MI     -     WINDOW.STATUS    -      QUE     -      NO       -      TE     -      DEJA      -      VER     -      LAS     -     COSITAS     -     QUE     -      SALEN      :::";
  var longitud=texto.length;
  function scroll() {
  texto=texto.substring(1,longitud-1)+texto.charAt(0);
  window.status = texto;
  setTimeout("scroll()",100);
  }
</script>
<body onload="scroll()">
<a href="hola.htm">hola, no puedes ver en window.status este link, porque según te pones sobre él vuelve a cambiar parapoder mostrar el texto desplazándose. Muy rápido tienes que ser para capturar un pantallazo justo en ese milisegundo... ;) </a>
</body>
</html>
  