// latched navigation for the top navigation
$(function()
{
  var path = location.pathname.substring(1);
  if ( path )
    $('#primary-navigation a[@href$="' + path + '"]').attr('class', 'selected');
});