var repeat=0
var title=document.title
var lnth=title.length
var start=1
function titlemove() {
  mtitle=title.substring(start, lnth) + title.substring(0, start)
  document.title=mtitle
  start++
  if (start==lnth+1) {
    start=0
    if (repeat==5)
    return
  }
  setTimeout("titlemove()",140)
}
if (document.title)
titlemove()