function headerLinks(PageHref){    	
	var title = document.title;
                       	
    if(PageHref.match("our-story"))        
    {
    	var footerOurStory = document.getElementById("footerHowOurStory");
        footerOurStory.firstChild.setAttribute("class", "activeMenuItem");  
            
        var headerOurStory = document.getElementById("headerHowOurStory");      
        headerOurStory.firstChild.setAttribute("class", "activeMenuItem");   
    }

    if(PageHref.match("our-method"))
    {
        var footerOurMethod = document.getElementById("footerHowOurMethod");
        footerOurMethod.firstChild.setAttribute("class", "activeMenuItem");  
            
        var headerOurMethod = document.getElementById("headerHowOurMethod");
        headerOurMethod.firstChild.setAttribute("class", "activeMenuItem");  
    }
		
    if(PageHref.match("some-examples"))
    {
        var footerSomeExamples = document.getElementById("footerHowSomeExamples");
        footerSomeExamples.firstChild.setAttribute("class", "activeMenuItem");  
            
        var headerSomeExamples = document.getElementById("headerHowSomeExamples");
        headerSomeExamples.firstChild.setAttribute("class", "activeMenuItem"); 
    }
		
    if(PageHref.match("by-visiting"))
    {
        var footerByVisiting = document.getElementById("footerExperienceByVisiting");
        footerByVisiting.firstChild.setAttribute("class", "activeMenuItem");  
          
        var headerByVisiting = document.getElementById('headerExperienceByVisiting');
        headerByVisiting.firstChild.setAttribute("class", "activeMenuItem"); 
    }
        
		
    if(PageHref.match("by-reading"))
    {
        var footerByReading = document.getElementById('footerExperienceByReading');
        footerByReading.firstChild.setAttribute("class", "activeMenuItem"); 
            
        var headerByReading = document.getElementById('headerExperienceByReading');
        headerByReading.firstChild.setAttribute("class", "activeMenuItem"); 
    }
	
	if(PageHref.match("info"))
	{
		var footerInfo = document.getElementById('footerContactInfo');
		footerInfo.firstChild.setAttribute("class", "activeMenuItem"); 
            
		var headerInfo = document.getElementById('headerContactInfo');
		headerInfo.firstChild.setAttribute("class", "activeMenuItem"); 
	}

	if(PageHref.match("getting-here"))
	{
		var footerGettingHere = document.getElementById('footerContactGettingHere');
		footerGettingHere.firstChild.setAttribute("class", "activeMenuItem");  
            
		var headerGettingHere = document.getElementById('headerContactGettingHere');
		headerGettingHere.firstChild.setAttribute("class", "activeMenuItem");  
	}                       
} 

    