/* 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="Fried Rice";
body="Shrimp Fried Rice $5.95<br><br>";
}

if (quotes==1) {
title="Fried Rice";
body="Beef Fried Rice $5.95<br><br>";
}

if (quotes==2) {
title="Fried Rice";
body="Chicken Fried Rice $5.95<br><br>";
}

if (quotes==3) {
title="Fried Rice";
body="BBQ Pork Fried Rice $5.95<br><br>";
}

if (quotes==4) {
title="Fried Rice";
body="House Special Fried Rice $6.50<br><br>";
}

if (quotes==5) {
title="Fried Rice";
body="Vegetable Fried Rice $4.75<br><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>');
