Yeah. It is possible to 'move'
the title of your webpage.
By adding this little script you could costumize the title of
your webpage
and get it moving.
<SCRIPT>
var left="»»";
var right="««";
var msg="ghostBone[dot]com";
var speed=300;
function scroll_title() {
document.title=left+msg+right;
msg=msg.substring(1,msg.length)+msg.charAt(0);
setTimeout("scroll_title()",speed);
}
scroll_title();
</script>
|