//change the scrollers width (in pixels)
var scrollerwidth=100
//change the scrollers height
var scrollerheight=200
//change the scrollers scroll speed (larger is faster)
var speed=2
//change the scrollers contents
var scrollercontents='<font face="verdana" color="white" size="1"><b>I found the pricing to be very competitive, service excellent and schedule satisfactory. In future, when we need signage for a Trade Show, or plaques for our employees, we will certainly call T-Cube Signs<br> ..... <i>I.K.</i></b><p><p><b>Just got the nameplates that we ordered. They look nice and we are very happy with the service and response.  Thanks for the great work!<br> ..... <i>Z.K.</i></b><p><p><b>Everything was great.  We appreciate the support and service.  Thanks for all the help<br> ..... <i>CP</i></b><p><p><b>I enjoyed working with T-Cube Signs. They were very attentive to my needs and had some great ideas about promoting my business<br> ..... <i>R.N.</i></b><p><p><b>Excellent customer service.  Order was processed promptly.  Good work.  Friendly and Courteous.  Highly recommended for quick turnaround<br> ..... <i>Dr. M.L.</i></b><p><p><b>Great Service ... Good Quality ... Will come back!<br> ..... <i>Q.D.</i></b><p><p><b>Your sales reps are very nice and helpful and your service is fast and accurate ..... <i>D.B.</i></b><p><p><b>The order process was very easy. I was impressed with the level of customer service. The timeframe from order to receipt was very shortand the quality of the product is great!<br> ..... <i>L.C.</i></b></font>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+scrollerwidth+';height:'+scrollerheight+'">'+scrollercontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializescroller()
}
}

function intializescroller(){
document.vscroller01.document.vscroller02.document.write(scrollercontents)
document.vscroller01.document.vscroller02.document.close()
thelength=document.vscroller01.document.vscroller02.document.height
scrollit()
}

function scrollit(){
if (document.vscroller01.document.vscroller02.top>=thelength*(-1)){
document.vscroller01.document.vscroller02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.vscroller01.document.vscroller02.top=scrollerheight
scrollit()
}
}
