/**
 * @author ericschu
 */
var leftSideMenu = {
	'home':'<h1>Main Menu</h1>	\
<p><a class="nav active" href="index.html" title="Welcome to my web site!">Home</a>	\
   <a class="nav" href="family.html" title="All about me and my family">Family</a>	\
   <a class="nav" href="adventures.html" title="What we do when I\'m not playing on the computer">Adventures</a>	\
   <a class="nav" href="computerprojects.html" title="What I do when I am playing on the computer">Computer Projects</a>	\
   <a class="nav" href="personalfinance.html" title="Save wisely, spend wisely">Personal Finance</a>	\
   <a class="nav" href="homeimprovement.html" title="Trust me! I saw Bob Vila do it once!!!">Home Improvement</a>	\
</p>',
	'family':'<h1>Family</h1>	\
<p><a class="nav active" href="family.html" title="All about me and my family">Family</a>	\
   <a class="nav" href="thefamily.html">The Family</a>	\
   <a class="nav" href="parentsandbrother.html">Parents and Brother</a>	\
   <a class="nav" href="friends.html">Friends</a>	\
   <a class="nav" href="aboutme.html">About me</a>	\
   <a class="nav sub" target="_blank" href="http://docs.google.com/View?docid=dgvgbb87_0hdk45m">My resume</a>	\
   <a class="nav sub" href="inspirations.html">Inspirations</a>	\
   <a class="nav sub" href="recipescooking.html">Recipes</a>	\
</p>'
};


alert('pagesetup.js is loaded!')

function loadLeftMenu(leftMenuDivId, menuKey) {
    alert('leftMenuDivId: ' + leftMenuDivId + '\nmenuKey: ' + menuKey);
    alert('leftSideMenu[' + menuKey + '] = ' + leftSideMenu[menuKey]);
    document.getElementById(leftMenuDivId).innerHTML = leftSideMenu[menuKey];
}

