// JavaScript Document
var num_of_quotes = 5;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
myRanQuote="&quot;Great fish, very fresh. I could still hear the gurgling of the water!&quot;<br /><br /><strong><em>&#8212; Gale O.</em></strong>";
}

if (quotes==1) {
myRanQuote="&quot;I just cooked and ate the salmon. It was incredible. I can't believe it doesn't have dye injected. The color is awesome...&quot;<br /><br /><strong><em>&#8212; Janice C.</em></strong>";
}

if (quotes==2) {
myRanQuote="&quot;We'll take some trout! The grouper was WOW!&quot;<br /><br /><strong><em>&#8212; Caleb F.</em></strong>";
}

if (quotes==3) {
myRanQuote="&quot;My son never eats soup but he gulped down your roasted potato &amp; garlic soup!&quot;<br /><br /><strong><em>&#8212; Carrie R.</em></strong>";
}

if (quotes==4) {
myRanQuote="&quot;Tomato Basil is finger&#8211;licking good. My favorite, thanks!&quot;<br /><br /><strong><em>&#8212; Walter S.</em></strong>";
}

document.write(myRanQuote);
