
var quotes=new Array()
 
//change the quotes if desired. Add/ delete additional quotes as desired.
 
quotes[0]=' <img src="images/tn_shark.jpg" style="margin: 0 5 0 0" alt="{State} Adventure Vacations"><br>Need a stress break?<br>Get a free quote!'

quotes[1]=' <img src="images/tn_lake1.jpg" style="margin: 0 5 0 0" alt="{State} Lakeside Vacation Rentals | Lake House Rental"><br>Relaxing by a lake!<br>Get a free quote!'
 
quotes[2]=' <img src="images/tn_ski2.jpg" style="margin: 0 5 0 0" alt="{State} Skiing Vacation Rentals | Mountain House Rental {State}"><br>Winter playgrounds<br>Get a free quote!'
 
quotes[3]=' <img src="images/tn_skilodge1.jpg" style="margin: 0 5 0 0" alt="{State} Ski Vacation Rental | Ski In Ski Out Rentals {State}"><br>Play In The Snow<br>Get a free quote!'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
