var soup = "Today 's Soup: Cream of Potato with Bacon -  $3.95"
var lunch = "Lunch: Cajun Rib Eye Sandwich -  $12.95"
var Dinner = "Dinner: Tequila Lime Shrimp -  $15.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);
