/*
-------------------------- -------------------------- 
Javascript for AAH Leftnav

 
 Declare 1 var menupage before calling this include

 Values are the top menu items:
   Healthy Yards, Helping Birds & Wildlife, Regional Resources, Kidspace, Contact Us

 Example Code:

 <script language="JavaScript" type="text/javascript">
 <!--
 var menupage='Healthy Yards'; 
 //-->
 </script>
 <script src="includes/aah_leftnav.js" language="JavaScript" type="text/javascript"></script>


Project Notes 

Healthy Yard section
  /bird/at_home/Healthy_Yard.html - inc file
  /bird/at_home/HealthyYard_Create.html  - AAH 2004 stellent 6.2  (+ 39 other AAH files)
  /bird/at_home/states/Regional_Resources.html - inc file
  AAH States Resources stellent project

Third tier pages are outside of global AAH left nav:
  Attracting Wildlife -  http://www.audubonathome.org/yard/index.html  left links?
  Bird Feeding - /bird/at_home/bird_feeding/index.html

-------------------------- --------------------------
*/

// url flags
var aah_dev  = "http://proto.audubon.org/";
var aah_live = "http://www.audubon.org/"; 

// tell script which one to use (dev on proto, live on websvr)
var aah_server = aah_live;


var aah_nav='<div style="width:94%; text-align:left;"> \
<BR><div class="leftNavHeader">AUDUBON AT HOME</div> \
<div class="leftNavMain"><A href="#">HOME</a></div> \
<br> \
<div class="leftNavMain"><A href="' + aah_server + 'bird/at_home/Healthy_Yard.html">Healthy Yards</a></div>';

// add subnav if called
if(menupage=='Healthy Yards') {
  aah_nav +='<UL class="leftNavUL"> \
    <LI class="leftNavLI">- <A href="http://ranchettes.audubonathome.org">Healthy Country Homes & Ranchettes</a></LI> \
    <LI class="leftNavLI">- <A href=' + aah_server + 'bird/at_home/Healthy_Yard.html>What is a Healthy Yard?</a></LI> \
    <LI class="leftNavLI">- <A href=' + aah_server + 'bird/at_home/HealthyYard_Create.html>Creating a Healthy Yard</a></LI> \
    <LI class="leftNavLI">- <A href=' + aah_server + 'bird/at_home/Explore.html>Explore your Backyard</a></LI> \
    <LI class="leftNavLI">- <A href=' + aah_server + 'bird/at_home/Plants.html>Plants for Birds & Wildlife</a></LI> \
  </UL>';
} // end if


aah_nav += '<BR><div class="leftNavMain"><a href="' + aah_server + 'bird/at_home/neighborhood/index.html">Neighborhood Conservation</a></div>';

// add subnav if called
if(menupage=='Neighborhood Conservation') {
  aah_nav +='<UL class="leftNavUL"> \
    <LI class="leftNavLI">- <A href="http://ranchettes.audubonathome.org">Healthy Country Homes & Ranchettes</a></LI> \
    <LI class="leftNavLI">- <A href="http://www.audubonathome.org/schoolyard/index.html">Healthy Schoolyards</a></LI> \
    <LI class="leftNavLI">- <A href="http://www.audubonathome.org/neighborhood/index.html">Healthy Neighborhoods</a></LI> \
  </UL>';
} // end if


aah_nav += '<BR><div class="leftNavMain"><A href="http://audubonathome.org/birdstohelp/">Helping Birds & Wildlife</a></div>';

// add subnav if called
if(menupage=='Helping Birds & Wildlife') {
  aah_nav +='<UL class="leftNavUL"> \
    <LI class="leftNavLI">- <A href="http://audubonathome.org/birdstohelp">Birds to Help</a></LI> \
    <LI class="leftNavLI">- <A href="' + aah_server + 'bird/at_home/bird_feeding/index.html">Basic Bird Feeding</a></LI> \
    <LI class="leftNavLI">- <A href="' + aah_server + 'bird/at_home/bird_watching/index.shtml">Birding Basics</a></LI> \
    <LI class="leftNavLI">- <A href="' + aah_server + 'bird/at_home/Plants.html">Plants for Birds & Wildlife</a></LI> \
    <LI class="leftNavLI">- <A href="http://www.audubonathome.org/yard/index.html">Attracting Birds & Wildlife</a></LI> \
    <LI class="leftNavLI">- <A href="' + aah_server + 'bird/at_home/KeepWildlifeSafe.html">Keeping Wildlife Safe</a></LI> \
    <LI class="leftNavLI">- <A href="' + aah_server + 'bird/at_home/FAQ.html">FAQs</a></LI> \
  </UL>';
} // end if


// if no subnavs just add a <br> after each item for spacing
aah_nav += '<BR><div class="leftNavMain"><A href="' + aah_server + 'bird/at_home/states/Regional_Resources.html">Regional Resources</a></div> \
<br> \
<div class="leftNavMain"><A href="http://www.audubon.org/educate/kids/">Kidspace</a></div> \
<br> \
<div class="leftNavMain"><a href="' + aah_server + 'bird/at_home/ContactUs.html">Contact Us</a></div> \
<br> \
</div> \
';

document.write(aah_nav);

// End AAH Nav
