<!--

var line=new Array()
line[1]="Thank You for visiting Stone's RV & Home Center"
line[2]="Atlantic Canada's Largest R.V. Dealer - with 2 Locations - New Glasgow & Sydney"
line[3]="2006 Canadian R.V. Dealer of the Year!"
line[4]="Selling FUN for Over 30 Years!"

// Specify font size for scroller below 
var ts_fontsize="13px"

//--Do not edit below this line

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 IE4+ or NS6

if (document.all||document.getElementById){
document.write('<input type="text" name="banner" ')
document.write('style=" width:740px; background-color: transparent; color: #4D79A6; font-family: verdana; font-size: '+ts_fontsize+'; font-weight:bold; border: medium none; text-align: center; letter-spacing: .06em; padding-left: 2px; padding-right: 2px" onfocus="blur()">')
}

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()",2800)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",2800)}
else{
nextstep()}}

function nextstep(){

nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",25)}

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