// JavaScript Document

var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='&ldquo;Some of the best guides that we have ever seen ...&rdquo; <em>MotorWeek</em>, Maryland Public Television'

quotes[1]='&ldquo;Everything you need to know about driving off-highway ...&rdquo; <em>Automobile</em>'

quotes[2]='&ldquo;Every West Coast-bound SUV should have a copy in the  glovebox.&rdquo; Road &amp; Track&rsquo;s<em> Open Road</em>'

quotes[3]='&ldquo;Our copy is already in the glovebox.&rdquo; <em>4WD &amp; Sport  Utility</em>'


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
