var soup = "Today 's Soup: Chicken and Vegetable -  $3.95"
var lunch = "Lunch: Texas BBQ Chicken Sandwich -  $9.95"
var Dinner = "Dinner: Bacon Wrapped Filet Mignon -  $9.95"

function showspecials(n,c,s) {
document.write("<marquee style='font-size: 16pt'><div style='width: 4000'>");
document.write("<span style=' color: rgb(0,128,0)'>");
document.write(n);
document.write("</span>");
document.write("<span style='position: relative; left: 400px; color: rgb(204,51,51)'>");
document.write(c);
document.write("</span>");
document.write("<span style='position: relative; left: 1000px; color: rgb(0,128,0)'>");
document.write(s);
document.write("</span></div></marquee>");
}
showspecials(soup,lunch,Dinner);
