

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(37)
quote[0] = "Applebee's International"
quote[1] = "Aramark Corporation"
quote[2] = "Baskin Robbins"
quote[3] = "Bertucci’s Corporation"
quote[4] = "Boston Market"
quote[5] = "Brinker International, Inc."
quote[6] = "Buffets Inc."
quote[7] = "Caribou Coffee Company"
quote[8] = "The Cheesecake Factory Incorporated"
quote[9] = "Chick-fil-A, Inc."
quote[10] = "Cracker Barrel Old Country Store, Inc."
quote[11] = "Dave & Buster's"
quote[12] = "Domino's Pizza, Inc."
quote[13] = "Dunkin Brands, Inc."
quote[14] = "Eatzi's "
quote[15] = "Elephant Bar Restaurants"
quote[16] = "Frisch’s Restaurants, Inc."
quote[17] = "HMS Host"
quote[18] = "Jack in the Box Inc."
quote[19] = "LaRosa’s Inc."
quote[20] = "McDonald's Corporation"
quote[21] = "Panda Restaurant Group"
quote[22] = "Panera LLC"
quote[23] = "Papa John’s International, Inc."
quote[24] = "Pappas Restaurants"
quote[25] = "Quiznos Sub"
quote[26] = "Ruby Tuesday, Inc."
quote[27] = "Ryan’s Restaurant Group, Inc."
quote[28] = "Starbucks Coffee Company"
quote[29] = "Taco Bueno Restaurants, LP"
quote[30] = "Taco Cabana"
quote[31] = "U.S. Foodservice"
quote[32] = "Wendcentral Corp."
quote[33] = "Wendy’s International, Inc."
quote[34] = "West Quality Food Service"
quote[35] = "Whataburger, Inc."
quote[36] = "White Castle System, Inc."
quote[37] = "Yum! Brands Inc."
 


function writeQuote()
{
var now = new Date()
var sec = now.getSeconds()
var core = sec % quote.length

var thequote = quote[core]
var theq = '&quot;'
var theend = ''


document.write( '<center><b>' + thequote + '</b></center>'  )
}


