function buildArray() {
  var a = buildArray.arguments;
  for (i=0; i<a.length; i++) {
    this[i] = a[i];
  }
  this.length = a.length;
}
var quote = new buildArray(  
  // Place Quotes Here, Separated by Commas  
  "<a href='/locations.htm'><img border='0' src='/images/homepage/locationcanistoga.jpg'></a>", 
  "<a href='/locations.htm'><img border='0' src='/images/homepage/locationdowntown.jpg'></a>", 
  "<a href='/locations.htm'><img border='0' src='/images/homepage/locationskagway.jpg'></a>", 
  "<a href='/locations.htm'><img border='0' src='/images/homepage/locationsouthwest.jpg'></a>" 

  // !NOTE: No Comma after last Quote!  
);
document.write(quote[Math.floor(Math.random()*quote.length)]);
