var delay=3500 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<span class="content">' //set opening tag, such as font declarations
fcontent[0]="I went to dive in and made a huge splash. When I arose to the surface everyone was yelling and screaming that something was after me... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[1]="I felt something brush up against my leg. I screamed and started swimming towards the dock... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[2]="I was swimming in the northern part of the lake, when I saw the water part in front of me like something sticking out of the water and coming at me... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[3]="Three ladies saw something that looked like dolphins or a Loch Ness-looking something going very fast through the water... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[4]="The &#147;catfish&#148 that I saw was defiantly bigger than me, dark gray in color, approximately 4 feet long, 2 feet wide... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[5]="I looked just in time to see a long shadow followed by what looked like a whale-like body with 2 long fins at the front... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[6]="It had a huge body with these 2 large fins that were coming out of the side of it... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[7]="We all witnessed a scabby-looking fin that was way outside the wake. We all saw it and immediately thought we were in shallow water, but it disappeared... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
fcontent[8]="All of the sudden this big dark looking creature stuck its head up out of the water. It had a long narrow head and long neck... <br><br><a href=http://www.lakenormanmonster.com/sightings.php>See more sightings...</a>"
closetag='</span>'

var fwidth=180 //set scroller width
var fheight=180 //set scroller height

///No need to edit below this line/////////////////

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(255,255,255)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame=20;
hex=255  // Initial color value.

function colorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex-=12; // increase color value
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);	
}
else{
document.getElementById("fscroller").style.color="rgb(0,0,0)";
frame=20;
hex=255
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window.onload=changecontent
