/* 
 * Author: Justin Chum
 * 
 * This javascript file contains the contents which is called within an index.html file. 
 * The setup is pretty easy as the file will run and parse each array.
 * 
 * Currently the arrays are setup as such:
 * *** Make sure you follow it carefully and test, commas and number of strings matters *****
 * First: Title 
 * Second: Description
 * Third: Item Title
 * Fourth: Item Description
 * Fifth: Item Price
 * 
 * Repeat 3-5 if you want more items.
 * 
 * Example
 * ----------------------------------------
 * var tempArray = new Array(
 * 		"Menu Item Title",
 * 		"Menu Item Description",
 * 		"Item title", "Item Description", "Item Price",
 * 		"Item2 title", "Item2 Description", "Item2 Price"
 * 		);
 * 
 * addMenuItem(tempArray);
 * 
 * ----------------------------------------
 * 
 * The funtion addMenuItem will be called and print out the contents of the array. 
 * Then the last part of the file will build the div:fixed shortcut
 * 
 * */
 
// Add arrays after this comment //
var bc_ds = new Array(
	"Best Cup Daily Special",
	"Daily Specials include a choice of soup or salad.",
	
	"SANDWICH -  ham and swiss with lettuce, tomato and mayo on whole wheat", 
		"Half<br />Full", 
		"<br />$6.25<br />$8.50",
		
	"ENTREE - no entree on Saturday's",
        "  ",
		"$8.95",
		
	"SOUPS -  beef and turkey noodle/  tomato pesto", 
		"Cup<br />Bowl<br />Add Roll", 
		"<br />$2.95<br />$4.95<br />$0.75",
		
	"SOUP - Baked French Onion Soup", 
		"", 
		"$5.50" 
	
		
	);
	
// Add function calls after this comment //
addMenuItem(bc_ds);	
//document.write('<tr><td style="height:37px;"> </td></tr>');
//addMenuItem(bc);

// Print List function prints out the shortcut menu
//printList();

