<!-- Begin
var Message="  Welcome to the largest personal website ever created   -  The Best Ways of MrShortcut -  MILLIONS of pages created just for you by MisterShortcut. ";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",10); 
} else {
place++;
window.setTimeout("scrollIn()",12); 
   } 
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 10);
} else {
place++;
window.setTimeout("scrollOut()", 90);
   }
}
scrollIn()
// End -->

