// RANDOM QUOTE
  function randomNum(max) {
    var rNum=NaN
    while (isNaN(rNum)) {
      rNum=Math.floor(Math.random()*(max))
    }
    return rNum
  }
  var pic = new Array()
  pic[0]="images/quotes/quote1.jpg"
  pic[1]="images/quotes/quote2.jpg"
  pic[2]="images/quotes/quote3.jpg"
  