$(function() {
    $('a.arrow').each(function() {
        if ($(this).attr('href') == requestPath) {
            $(this).removeAttr('href', '');
            $(this).css('text-decoration', 'none');
            $(this).html($(this).text() + ' &darr;');
        } else {
            $(this).text($(this).text().replace(/&darr;/, ''));
        }
    });
});
