
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='/about/pres.htm#safe'><img border='0' src='/images/homepage/smallad_penguins.jpg'></a>",
 "<a href='/24/atm.htm'><img border='0' src='/images/homepage/smallad_mmcIII.jpg'></a>",
 "<a href='/nowleaving/nowleaving.asp?cyfiweb=Farmers%20and%20Merchants%20Bank%20and%20Trust%20%of%20Marinette%20Wisconsin&cyfilink=http://www.fdic.gov/deposit/index.html' target='_blank'><img border='0' src='/images/homepage/smallad_fdic.jpg'></a>"

  // !NOTE: No Comma after last Quote!  
);
document.write(quote[Math.floor(Math.random()*quote.length)]);
