// The intention of this script is to equalize the heights of all the links in 
// the navigation bar when a user opts to scale up the text in their browser 
// window, causing a necessary text wrapping in the navigation bar (e.g. at a 
// large text size, "Services & Solutions" might need to wrap, whereas "Home" 
// will not). Equalizing the link heights assures that gradients and borders
// dependent on the link will render correctly. In normal circumstances, this 
// script will not have any effect.

$(function() {
    var tallestLinkHeight = 0;
    var jqAllLinks = $('#pageNavigation a').each(function() {
        tallestLinkHeight = Math.max(tallestLinkHeight, $(this).height());
    });
    jqAllLinks.height(tallestLinkHeight);
});
