var adtimer 
var adcounter 
var textads = new Array() 

textads[0]='<a class="white_links" href=\"testimonials.html\">Our group had a great time this morning. Everyone love it! Thanks so much for your help.<br>- ETrade Financial</a>' 

textads[1]='<a class="white_links" href=\"testimonials.html\">Thank you so much for making possible my dream to see the fall colors of the Bosque and Albuquerque<br>- Lea and Jerry</a>'

textads[2]='<a class="white_links" href=\"testimonials.html\">Moment of a lifetime would go again in a minute!<br>- Kay</a>'

textads[3]='<a class="white_links" href=\"testimonials.html\">Before I visited Albuquerque, I really didn`t know what to expect. Now, I expect I`ll have to return several times to explore all the things I didn`t get to experience this time.<br>- Life and Home Magazine</a>'

textads[4]='<a class="white_links" href=\"testimonials.html\">It was a dream come true! Pilot and crew did an excellent job. Would recommend it to anyone!<br>- Barbara</a>'

textads[5]='<a class="white_links" href=\"testimonials.html\">Scott and his team have provided our clients a flight of a lifetime year after year. The Rainbow Ryder staff is always friendly, professional and above all, fun!<br>Contiki Holidays</a>'

textads[6]='<a class="white_links" href=\"testimonials.html\">Awesome! Really enjoyed the pilot and crew, the ride was excellent.<br>- Dean and Jan</a>'

textads[7]='<a class="white_links" href=\"testimonials.html\">I regularly work with Rainbow Ryders to provide a unique Albuquerque adventure for groups visiting the city and they always deliver above and beyond my expectations.<br>- Albuquerque C and BB</a>'

var adcounter=Math.floor(Math.random()*(textads.length)) 

function changeRandomTextAd(){ 
   var oldAD = document.getElementById('randomtextadsdiv').innerHTML; 
   var newAD = textads[adcounter]; 
   document.getElementById('randomtextadsdiv').innerHTML = newAD; 

if (adcounter < ((textads.length)-1)) 
{ 
adcounter++ 
} 
else 
{ 
adcounter=0 
} 

adtimer=setTimeout("changeRandomTextAd()",9000) 
} 

