jQuery(document).ready(function(){

    // make sidebar + main content area same height
    $("#equalHeight").equalHeights();
	
	// make these 2 links(they have subpages so nothing on these pages) in nav unclickable...
    $("#menu-sidebar li a:first").attr("href", "#");
    //$("#access li#menu-item-100 a").attr("href", "#");

    // allow for country options in sidebar, height dynamic encase more pages/countries are added...
    var sideHeight = $("#menu-sidebar li a:first").siblings().height();
    $("#menu-sidebar li:first").css("padding-bottom", sideHeight);
    
    // alter background for each team member on teams page...
    $("#team-section .team-member-block:odd").css("background", "#E8EEFC");
    
    //$("#contact-info li:odd").css("background", "#E8EEFC");
    
    // alter background for each team member on teams page...
    $("#equalHeight .cta a:first").css("left", 0);
        
});

