﻿$(function() {
    $('#nav > div > ul > li > a')
       .each(function() {
           this.href = this.href.replace('?', '');
       });
});