Well--first I want to thank you for taking the time to get to know a little more about me. If you ran into this page by accident, then hey...look on the bright side, at least you got to know a little more about someone you just might grow to love.
The first page of a website is always the hardest. It's like the first chapter of a book, you have to make it sound interesting enough for people to go on, but not too much where it gives everything away. Nevertheless, this is me. This will give you an insight into the world of Ashley---whether you like it or not.
function scrollit(seed) { var m1 = "Welcome to The JavaScript Source! "; var m2 = "..... You can find all the scripts you need here! "; var m3 = "......Enjoy "; var m4 = ""; var msg=m1+m2+m3+m4; var out = " "; var c = 1; if (seed > 100) { seed--; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; } out+=msg; seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scrollit(100)",75); } } } // End -->