var howMany = 3
var quote = new Array(howMany+1)
quote[0]="<a href=\"menu/sandwiches.html\"><img src=\"images/cover/bbq-sandwich.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"NEW! Barbecue Sandwich\"></a>"
quote[1]="<a href=\"menu/index.html\"><img src=\"images/cover/chicken-apple-salad.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"New! Chicken Apple Salad\"></a>"
quote[2]="<a href=\"menu/pasta.html\"><img src=\"images/cover/garlic-mushroom-spaghetti.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"NEW! Garlic Mushroom Spaghetti\"></a>"
quote[3]="<a href=\"menu/cookies.html\"><img src=\"images/cover/cookie-bars.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"Lemon Bars, Fudge Walnut Brownies, Chocolate Chip Bars\"></a>"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
