/*Copyright (c) 2002 Coyotee Labs Romania (www.coyoteelabs.go.ro)
  This script can be used freely as long as all copyright messages are intact.
  Visit WWW.COYOTEELABS.GO.RO for more scripts */

var tit = document.title;
var c = 0;
var timer = 15000;  //the time before the script begins to write the title again
function writetitle(){document.title = tit.substring(0,c);if(c==tit.length){c = 0; setTimeout("writetitle()", timer)}else{c++;setTimeout("writetitle()", 200)}}
writetitle()

