/* ACTIVE STATE */

window.addEvent('domready', function() {

  var navElements = $$('ul.topNav li a', 'ul.mainNav li a', 'ul.subNav ul li a', '#footerLink ul li a', '#getInvolvedNav ul li a');



  navElements.each(function(navElement, i) {    

    // If element is itself

    if(navElement == window.location.href || navElement + 'index.php' == window.location.href) {

      navElement.addClass('active');

    }



    // If current is part of CONTACT

    else if(window.location.href.toString().test('/contact/')) {

      $$('#mainContact a')[0].addClass('active');

    }



    // If current is part of CLOTHING & PICKUP

    else if(window.location.href.toString().test('/clothing-pickup/')) {

      $$('#mainClothing a')[0].addClass('active');

    }



    // If current is part of MEDIA

    else if(window.location.href.toString().test('/media/')) {

      $$('#mainMedia a')[0].addClass('active');

    }



    // If current is part of STORIES

    else if(window.location.href.toString().test('/stories/')) {

      $$('#mainStories a')[0].addClass('active');

    }



    // If current is part of NEWS

    else if(window.location.href.toString().test('/news/')) {

      $$('#mainNews a')[0].addClass('active');

    }



    // If current is part of ABOUT

    else if(window.location.href.toString().test('/about/')) {

      $$('#mainAbout a')[0].addClass('active');

    }



    // If current is part of PARTNERS

    else if(window.location.href.toString().test('/partners/')) {

      $$('#mainPartners a')[0].addClass('active');

    }



    // If current is part of GET INVOLVED

    else if(window.location.href.toString().test('/volunteer/') 

      || window.location.href.toString().test('/mentor/')

      || window.location.href.toString().test('/event/')

      || window.location.href.toString().test('/give-clothing/')

      || window.location.href.toString().test('/donate/')

      || window.location.href.toString().test('/corporate/')) {

      $$('#mainInvolved a')[0].addClass('active');

    }



    // GET INVOLVED active state

    if(window.location.href.toString().test('/event/')) {

      $$('#getInvolvedNav .participateNavItem a')[0].addClass('active');

    }



    else if(window.location.href.toString().test('/volunteer/')) {

      $$('#getInvolvedNav .volunteerNavItem a')[0].addClass('active');

    }



    else if(window.location.href.toString().test('/mentor/')) {

      $$('#getInvolvedNav .mentorNavItem a')[0].addClass('active');

    }

    

    else if(window.location.href.toString().test('/give-clothing/')) {

      $$('#getInvolvedNav .clothingNavItem a')[0].addClass('active');

    }   



    else if(window.location.href.toString().test('/donate/')) {

      $$('#getInvolvedNav .donateNavItem a')[0].addClass('active');

    } 



    else if(window.location.href.toString().test('/corporate/')) {

      $$('#getInvolvedNav .corporateNavItem a')[0].addClass('active');

    }



  });	  

});
