*Paste the following code before the <head> tag in your theme code:

<script type="text/javascript">

var rev = "fwd";

function titlebar(val)

{

var msg = "INSERT TEXT HERE";

var res = " ";

var speed = 100;

var pos = val;

msg = "INSERT TEXT HERE";

var le = msg.length;

if(rev == "fwd"){

if(pos < le){

pos = pos+1;

scroll = msg.substr(0,pos);

document.title = scroll;

timer = window.setTimeout("titlebar("+pos+")",speed);

}

else{

rev = "bwd";

timer = window.setTimeout("titlebar("+pos+")",speed);

}

}

else{

if(pos > 0){

pos = pos-1;

var ale = le-pos;

scrol = msg.substr(ale,le);

document.title = scrol;

timer = window.setTimeout("titlebar("+pos+")",speed);

}

else{

rev = "fwd";

timer = window.setTimeout("titlebar("+pos+")",speed);

}

}

titlebar(0);

</script>

NOTE: It will not automatically be the title of your blog, you have to edit what you want it to be where it says "insert text here"!