
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  
  
  // this is for rightimage20120120 <img border='0' src='images/rightimage.jpg' width='265' height='270' usemap='#rightimgmap'>
 
 "<a href='pers_ratescd.htm'><img border='0' src='images/rightimage.jpg' width='265' height='270'></a>", 
 "<a href='ob.htm'><img border='0' src='images/greener.jpg' width='302' height='270'></a>", 
 "<a href='eStatement.htm'><img border='0' src='images/rightimage3.jpg' width='302' height='270' ></a>"

 
 
  // !NOTE: No Comma after last Quote!  
);
document.write(quote[Math.floor(Math.random()*quote.length)]);

