<!--

//Specify scroller contents
var line=new Array()
line[1]="Welcome to Nunzio's Little Place On The Web! ....... There are many things to see while here.     "
line[2]="Click the >> About This Site << link that you see below to find out what this site is all about. "
line[3]="See the About Nunzio page where Nunzio reveals some things about himself and his history."
line[4]="New songs were recently added to the Automated Jukebox. There are now 22 songs/tracks."
line[5]="  The Multiple Track Stream Example on this page now contains a 36 song / track playlist."
line[6]="  Download the playlist to stream all 36 tracks directly in Winamp without visiting this site."
line[7]="   The Guestbook and the Message Board are now read-only and are for referencing only."
line[8]="   But if you want to register at the Board an exception can be made on an individual basis."

//Specify font size for scroller
var ts_fontsize="11px"

//--Edit below this line with EXTREME CARE

var longestmessage=1
for (i=2;i<line.length;i++){
if (line[i].length>line[longestmessage].length)
longestmessage=i
}

//Auto set scroller width
var tscroller_width=line[longestmessage].length

lines=line.length-1 //--Number of lines

//if IE 4+ or NS6
if (document.all||document.getElementById){
document.write('<form name="bannerform">')
document.write('<input type="text" name="banner" size="'+tscroller_width+'"')
document.write('  style="color: #000000; background: #E0F0FC; font-family: verdana, arial, helvetica, sans-serif; font-size: '+ts_fontsize+'; font-weight:bold; border: 1px solid #E0F0FC" onfocus="blur()">')
document.write('</form>')
}

temp=""
nextchar=-1;
nextline=1;
cursor="\\"
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",1000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",1000)}
else{
nextstep()}}

function nextstep(){

if (cursor=="\\"){
cursor="|"}
else if (cursor=="|"){
cursor="/"}
else if (cursor=="/"){
cursor="-"}
else if (cursor=="-"){
cursor="\\"}


nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",50)}
//Change above numeric value to adjust speed - lower number is faster speed

//if IE 4+ or NS6
if (document.all||document.getElementById)
window.onload=animate
// -->

