var howMany = 3
var quote = new Array(howMany+3)
quote[0]="<a href=\"menu/sandwiches.html\"><img src=\"images/cover/sandwich-cheese-burger.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"Cheese Burger\"></a>"
quote[1]="<a href=\"menu/specialties.html\"><img src=\"images/cover/house-specialty-fish-kiev.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"Fish Kiev\"></a>"
quote[2]="<a href=\"menu/pasta.html\"><img src=\"images/cover/pasta-red-pesto.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"Red Pesto with Grilled Chicken\"></a>"
quote[3]="<a href=\"menu/cakes.html\"><img src=\"images/cover/bestseller-devils-food-cake.jpg\" border=\"0\" width=\"800\" height=\"345\" alt=\"Devil's Food Cake\"></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)

