var speed=4500

var news=new Array()
news[0]="<p> &quot;My 2008 football team was an ordinary team with extraordinary conditioning... we went undefeated.&quot;<br> <b> Youth Coach Victor Furnells</b></p>"
news[1]="<p> &quot;Sarge helped me a lot -- I dropped 30 seconds in my last meet!&quot;<br> <b> 12-year-old swimmer</b></p>"
news[2]="<p> &quot;Our ten-and-eleven-year-old boys were the best conditioned in the league, and thanks to Sarge, made it to the Super Bowl.&quot;<br> <b>Coach James Whalen, Damascus Cougars Football</b></p>"
news[3]="<p> &quot;Sarge is awesome!! He helped me become more flexible and strong, but in a fun way.&quot;<br> <b>14-year-old swimmer</b></p>"
news[4]="<p> &quot;Sarge's workout hit the key strength and agility areas needed for our volleyball program. The girls loved his intensity level and are eager to start their pre-season training!!&quot;<br>  <b>Coach Laps, UHS Volleyball</b></p>"
news[5]="<p> &quot;Thank you for helping our son grow both physically and mentally this past year.&quot;<br> <b>Baseball player parent</b></p>"
//expand or shorten this list of messages as desired

var fadescheme=0 //set 0 to fade bgcolor from (white to black), 1 for (black to white)
var hex=(fadescheme==0)? 255 : 0
var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,0,0)"
var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)"
var frame=20;

var ie=document.all
var ns6=document.getElementById
var ns4=document.layers

i=0
tickerobject=ie? subtickertape: ns6? document.getElementById("subtickertape") : document.tickertape.document

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}

function bgcolorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme
//tickerobject.style.backgroundColor="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("bgcolorfade()",20);	
}
else{
//tickerobject.style.backgroundColor=endcolor;
frame=20;
hex=(fadescheme==0)? 255 : 0
}   
}

function updatecontent(){
if (ie||ns6)
bgcolorfade()
if (ns4){
tickerobject.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
tickerobject.subtickertape.document.close()
}
else 
tickerobject.innerHTML=news[i]

if (i<news.length-1)
i++
else
i=0
setTimeout("updatecontent()",speed)
}
