/* 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 = 10;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Succulent Taco Salad";
body="/image/RMenu_Graphic_1.jpg";
}

if (quotes==1) {
title="Fresh Green Ingredients";
body="/image/RMenu_Graphic_2.jpg";
}

if (quotes==2) {
title="Crisp, Light and Crunchy Chips";
body="/image/RMenu_Graphic_Chips.jpg";
}

if (quotes==3) {
title="Authentic Enchiladas";
body="/image/RMenu_Graphic_Enchiladas.jpg";
}

if (quotes==4) {
title="Mouth Watering, Sizzling Fajitas";
body="/image/RMenu_Graphic_Fajitas.jpg";
}

if (quotes==5) {
title="Fresh Dips & Sauces";
body="/image/RMenu_Graphic_Guacamole.jpg";
}

if (quotes==6) {
title="Unigue Mexican Dishes";
body="/image/RMenu_Graphic_GuacamoleSalsa.jpg";
}

if (quotes==7) {
title="Crisp Chips and Fresh Salsa made just for You!";
body="/image/RMenu_Graphic_SalsaChips.jpg";
}

if (quotes==8) {
title="Quality Food Straight to Your Table";
body="/image/RMenu_Graphic_Table.jpg";
}

if (quotes==9) {
title="Enjoy our Refreshing Margaritas";
body="/image/RMenu_Graphic_Margarita.jpg";
}

document.write('<img src="'+ body +'" title="' + title + '" border=0');
