//This JavaScript file includes the left column block that is common to many of the FTFB's web pages
    

//Start of the left navigation column block

//alert("pageName = " + pageName);
document.write("<div id='avmenu'>");
document.write("<h2 class='hide'>Site menu:</h2>");
document.write("<ul>");

    if (pageName == "home") document.write("<li><a class='current' href='#'>Home Page</a></li>");
    else document.write("<li><a href='../index.htm'>Home Page</a></li>");
    
    if (pageName == "m&p") document.write("<li><a class='current' href='#'>Mission & Purpose</a>");
    else document.write("<li><a href='../mission/m&p.htm'>Mission & Purpose</a>");
    
        document.write("<ul>");
        
            /*
            if (pageName == "m&p") document.write("<li><a class='current' href='#'>About Us</a></li>");
            else document.write("<li><a href='../mission/m&p.htm'>About Us</a></li>");
            */
            
            if (pageName == "fooddist") document.write("<li><a class='current' href='#'>Food Distribution</a></li>");
            else document.write("<li><a href='../mission/fooddist.htm'>Food Distribution</a></li>");
            
            /*
            if (pageName == "wardrobe") document.write("<li><a class='current' href='#'>Working Wardrobe</a></li>");
            else document.write("<li><a href='../mission/wardrobe.htm'>Working Wardrobe</a></li>");
            */
            
            /*
            if (pageName == "history") document.write("<li><a class='current' href='#'>Our History</a></li>");
            else document.write("<li><a href='../mission/history.htm'>Our History</a></li>");
            */
            
        document.write("</ul>");
        
    document.write("</li>");
    
    if (pageName == "who") document.write("<li><a class='current' href='#'>Who We Are</a></li>");
    else document.write("<li><a href='../who/who.htm'>Who We Are</a></li>");
    
    if (pageName == "how") document.write("<li><a class='current' href='#'>How You Can Help</a></li>");
    else document.write("<li><a href='../how/how.htm'>How You Can Help</a></li>");
    
        document.write("<ul>");
        
            if (pageName == "fooddonations") document.write("<li><a class='current' href='#'>Food Donations</a></li>");
            else document.write("<li><a href='../how/fooddonations.htm'>Food Donations</a></li>");
            
            if (pageName == "financial") document.write("<li><a class='current' href='#'>Financial Support</a></li>");
            else document.write("<li><a href='../how/financialsupport.htm'>Financial Support</a></li>");
            
            if (pageName == "volunteer") document.write("<li><a class='current' href='#'>Volunteering</a></li>");
            else document.write("<li><a href='../how/volunteer.htm'>Volunteering</a></li>");
            
            /*
            if (pageName == "otherneeds") document.write("<li><a class='current' href='#'>Other Needs/a></li>");
            else document.write("<li><a href='../events/other_needs.htm'>Other Needs</a></li>");
            */
            
        document.write("</ul>");
        
    if (pageName == "events") document.write("<li><a class='current' href='#'>Events</a>");
    else document.write("<li><a href='../events/events.htm'>Events</a>");
    
        document.write("<ul>");
        
            if (pageName == "golf") document.write("<li><a class='current' href='#'>Golf Outing</a></li>");
            else document.write("<li><a href='../events/golf.htm'>Golf Outing</a></li>");
            
            if (pageName == "tour") document.write("<li><a class='current' href='#'>Tour De Franklin</a></li>");
            else document.write("<li><a href='../events/tour_home_2010.htm'>Tour De Franklin</a></li>");
            
            /*
            if (pageName == "icebowl") document.write("<li><a class='current' href='#'>Disc Golf Icebowl</a></li>");
            else document.write("<li><a href='../events/icebowl.htm'>Disc Golf Icebowl</a></li>");
            */
            
        document.write("</ul>");
        
    document.write("</li>");
    
    if (pageName == "links") document.write("<li><a class='current' href='#'>External Links</a></li>");
    else document.write("<li><a href='../extlinks/extlinks.htm'>External Links</a></li>");
    
    if (pageName == "contact") document.write("<li><a class='current' href='#'>Contact Us</a></li>");
    else document.write("<li><a href='../contactus/contactus.htm'>Contact Us</a></li>");

    //if (pageName != "home") {
        if (pageName ==  "newsarchive") document.write("<li><a class='current' href='#'>News Archive</a></li>");
        else document.write("<li><a href='../news/news.htm'>News</a></li>");
        
            /*
        document.write("<ul>");
        
            if (pageName == "golf") document.write("<li><a class='current' href='#'>Golf Outing</a></li>");
            else document.write("<li><a href='../events/golf.htm'>Golf Outing</a></li>");
            
            if (pageName == "tour") document.write("<li><a class='current' href='#'>Tour De Franklin</a></li>");
            else document.write("<li><a href='../events/tour_home.htm'>Tour De Franklin</a></li>");
            
            if (pageName == "icebowl") document.write("<li><a class='current' href='#'>Disc Golf Icebowl</a></li>");
            else document.write("<li><a href='../events/icebowl.htm'>Disc Golf Icebowl</a></li>");
            
        document.write("</ul>");
            */
        
    document.write("</li>");
    
    //}
    
document.write("</ul>");


//Start of special "announce" box in left column

if (pageName == "home") {
    document.write("<div class='announce'>");
    document.write("<h2>Recent News</h2>");
    document.write("<p><strong>June 2010:</strong><br />");
    document.write("<a href='news/news.htm'>Long-Time Food Bank Staffer Moves On...</a></p>");
    document.write("</div>");
}//if

//End of special "announce" box in left column


document.write("</div>");

//End of the left navigation column block
