/* 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="Beef Dishes";
body="Hunan Beef $7.25<br><br>";
}

if (quotes==1) {
title="Beef Dishes";
body="Sa Cha Beef   $7.25<br><br>";
}

if (quotes==2) {
title="Beef Dishes";
body="Beef with Vegetables $7.25<br><br>";
}

if (quotes==3) {
title="Beef Dishes";
body="Mongolian Beef<br><br>";
}

if (quotes==4) {
title="Beef Dishes";
body="Kung Pao Beef<br><br>";
}

if (quotes==5) {
title="Beef Dishes";
body="Szechaun Beef<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>');
