<!-- This javascript file contains the values for the Left Vertical Menu -->
<!-- The screen will grow/shrink based upon the number of menu items 


var cSpace = '<div class="space">&nbsp;</div>'
var cNavBarBottom = '<div class="NavBarBottom">'

var cHome = '<a href="/index.html" class="NavBarBottom">Home</a> | '
var cEvents = '<a href="http://organizingdinner.com/blog/events/"  class="NavBarBottom">Events </a> | '
var cContactUs = ' <a href="/contactus.html" class="NavBarBottom">Contact Us</a> | '
var cBlog = '<a href="http://www.organizingdinner.com/blog" class="NavBarBottom">Blog </a> | '
var cWhatsCooking = '<a href="/whatscooking.html" class="NavBarBottom">Whats Cooking </a> | '
var cRecipes = '<a href="/recipes" class="NavBarBottom">Recipes </a> | '
var cDinner911 = '<a href="http://www.facebook.com/OrganizingDinner#!/OrganizingDinner?v=app_2373072738" class="NavBarBottom"> Dinner 911</a> | '
var cShop = '<a href="/shop.html" class="NavBarBottom">Shop</a> | '
var cClasses = '<a href="/classes.html" class="NavBarBottom">Classes</a> | '
var cNews = '<a href="/newsarticles.html" class="NavBarBottom">News</a> | '
var cSmartIngredients = '<a href="/smartingredients.html" class="NavBarBottom">Smart Ingredients</a>  '

var cEndDiv = '</div>'
<!-- space here -->

var cTrailerContact = ' <div class="TrailerContact">Contact Kelly Donlea at <span class="FooterEmail"><a href="mailto:info@organizingdinner.com" class="FooterEmail">info@organizingdinner.com</a>&nbsp;</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1-847-302-1531 </div>'

var cFooterDesigners = ' <div class="FooterDesigners">Graphic Design by <a href="http://www.creativehotlist.com/w-engelking" target="_blank" class="FooterDesigners">Wedesign</a> | Web Development by <a href="http://www.deevisesolutions.com" target="_blank" class="FooterDesigners">DeeVise Solutions </a> | Photographers:  Enstrom & Wheat and Sonia Stein Photography </div>'
  		
<!-- end div here -->

<!----------------------------------------------------------------------------->
<!----------------------------------------------------------------------------->

<!-- The current menu item is hightlighted in blue text, all other menu items are white. The current menu item is passed into this script-->
var cMenuCurrent = (currentmenu)

<!-- Based upon the current menut item, override the variable to specify that this menu item is the current page so that the menu item will be highlighted in blue.

switch (cMenuCurrent) {
case "Home": cHome = '<span class="NavBarBottomCurrent">Home </span> | '; break;
case "Events": cEvents = '<span class="NavBarBottomCurrent">Events </span> | '; break;
case "ContactUs": cContactUs = '<span class="NavBarBottomCurrent">Contact Us </span> | '; break;
case "Blog": cBlog = '<span class="NavBarBottomCurrent">Blog </span> | '; break;
case "WhatsCooking": cWhatsCooking = '<span class="NavBarBottomCurrent">Whats Cooking </span> | '; break;
case "Recipes": cRecipes = '<span class="NavBarBottomCurrent">Recipes </span> | '; break;
case "Dinner911": cDinner911 = '<span class="NavBarBottomCurrent">Dinner 911 </span> | '; break;
case "Shop": cShop = '<span class="NavBarBottomCurrent">Shop </span> | '; break;
case "Classes": cClasses = '<span class="NavBarBottomCurrent">Classes </span> | '; break;
case "News": cNews = '<span class="NavBarBottomCurrent">News </span> | '; break;
case "SmartIngredients": cSmartIngredients = '<span class="NavBarBottomCurrent">Smart Ingredients </span> '; break;

}



var cText = ''


cText += cSpace
cText += cNavBarBottom

cText += cHome
cText += cEvents
cText += cContactUs
cText += cBlog
cText += cWhatsCooking
cText += cRecipes
cText += cDinner911
cText += cShop
cText += cClasses
cText += cNews
cText += cSmartIngredients


cText += cEndDiv
cText += cSpace
cText += cTrailerContact
cText += cSpace
cText += cFooterDesigners
cText += cSpace

document.write(cText) 


