// Random Quote Script
        
  function randomNum(max) {
    var rNum=NaN
    while (isNaN(rNum)) {
      rNum=Math.floor(Math.random()*(max))
    }
    return rNum
  }
  var pic = new Array()
  pic[0]="images/quote1.gif"
  pic[1]="images/quote2.gif"
  pic[2]="images/quote3.gif"
  pic[3]="images/quote4.gif"
  pic[4]="images/quote5.gif"
  pic[5]="images/quote6.gif"  
