/* 
 * 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 //
 
 
 // All items should have 3 lines (Item Name, Description, and Prices)
var gc_ds = new Array(
	"Garden Cafe & Grill Daily Special",
	"Daily Specials include a choice of soup, salad, or fries.",
	
	"SANDWICH -  toasted tuna and cheddar with lettuce, tomato and mayo on multigrain",
		"Half<br />Full",
		"<br />$6.25<br />$8.50",
		
	"ENTREE - no entree on Saturday's",
		"",
		"$8.95",
	
	"SOUPS - turkey vegetable with spinach and rice/  creamy curry green pea", 
		"Cup<br />Bowl<br />Add Roll", 
		"<br />$2.95<br />$4.95<br />$0.75"
		
	);
		
// Add function calls after this comment //
addMenuItem(gc_ds);	
//addMenuItem(gc);

updateDate("Updated: saturday feburary 4 2012");
// Date Function 


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

