function MakeArray(n) {
  this.length = n;
  for (var i = 1; i <= n; i++) {
    this[i] = 0
  }
  return this
}

function Random() {
  Quotes=new MakeArray(10)
  numQuotes=10

  Quotes[0] = "<A href='ervin-Gainer.shtml'><img src='images/114.gif'></a>";
  Quotes[1] = "<A href='doc-Holloway.shtml'><img src='images/123.gif'></a>";
  Quotes[2] = "<A href='hennis-Washington.shtml'><img src='images/132.gif'></a>";
  Quotes[3] = "<A href='caleb-Williams.shtml'><img src='images/148.gif'></a>";
  Quotes[4] = "<A href='wade-Hooper.shtml'><img src='images/165.gif'></a>";
  Quotes[5] = "<A href='dave-Ricks.shtml'><img src='images/181.gif'></a>";
  Quotes[6] = "<A href='greg-Jones.shtml'><img src='images/198.gif'></a>";
  Quotes[7] = "<A href='jason-Beck.shtml'><img src='images/220.gif'></a>";
  Quotes[8] = "<A href='nick-Tylutki.shtml'><img src='images/242.gif'></a>";
  Quotes[9] = "<A href='tony-Cardella.shtml'><img src='images/275.gif'></a>";

  var now= new Date()
  var sec= now.getSeconds()
  return Quotes[sec % numQuotes];
}