может кому понадобится=)

http://i019.radikal.ru/0909/af/f1499d13918a.jpg

Код:
<script language=JavaScript>
var titletext="Мой форум > Бегающий заголовок"
var thetext=""
var started=false
var step=0
var times=1
function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
document.title = titletext;
setTimeout("anim()",1);
}
thetext = titletext;
}
}
function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}
function anim()
{
step++
if (step==10) {step=1}
if (step==10) {document.title='[~~~~~~~~~ Мой форум~~~~~]'}
if (step==9) {document.title='[~~~~~~~~ Мой форум ~~~~~~]'}
if (step==8) {document.title='[~~~~~~~ Мой форум~~~~~~~]'}
if (step==7) {document.title='[~~~~~~ Мой форум~~~~~~~~]'}
if (step==6) {document.title='[~~~~~ Мой форум ~~~~~~~~~]'}
if (step==5) {document.title='[~~~~ Мой форум ~~~~~~~~~~]'}
if (step==4) {document.title='[~~~ Мой форум ~~~~~~~~~~~]'}
if (step==3) {document.title='[~~ Мой форум ~~~~~~~~~~~~]'}
if (step==2) {document.title='[~ Мой форум ~~~~~~~~~~~~~]'}
if (step==1) {document.title='[ Мой форум ~~~~~~~~~~~~~~]'}

setTimeout("anim()",200); 
}
if (document.title)
window.onload=onload=welcometext
</script>

Мой форум - меняем на свое
if (step==10) {step=1} - ставим столько, сколько дорожек у вас будет, количество дорожек по вашему желанию
setTimeout("anim()",200); - скорость выбега, чем больше тем медленней выбег

ПРИМЕР