/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Chefs Specialties";
body="Happy Family  $9.75<br><br>";
}

if (quotes==1) {
title="Chefs Specialties";
body="Dragon & Pheonix $9.25<br><br>";
}

if (quotes==2) {
title="Chefs Specialties";
body="Sesame Chicken $8.95<br><br>";
}

if (quotes==3) {
title="Chefs Specialties";
body="Four Season $9.25<br><br>";
}

if (quotes==4) {
title="Chefs Specialties";
body="Beef w/scallop sizzling Plate $9.25<br>";
}

if (quotes==5) {
title="Chefs Specialties";
body="Three happiness in Garlic Sauce $9.75<br>";
}

document.write('<div align=left>');
document.write('<strong><font color="white">' + title + '</font></strong><br>');
document.write('<font color="white">'+ body +'</font>');
document.write('</div>');
