Neem een kijkje in de History.js-bibliotheek, kan beide moderne browsers aan en heeft fallbacks voor oudere HTML4-browsers
https://github.com/browserstate/history.js/
In uw gebeurtenishandler in $(".mLink").click(function(){...
Telkens wanneer u een scroll activeert, kunt u zoiets als dit toevoegen
case "mL0":
$("html, body").stop().animate({ scrollTop: 0}, 1000, 'easeInOutExpo');
History.pushState(null, null, "?home");
break;
case "mL1":
$("html, body").stop().animate({ scrollTop: ($('#filter').offset().top-72) }, 1000, 'easeInOutExpo');
History.pushState(null, null, "?portfolio");
break;
...
Mooie portfoliosite trouwens.