So, looks like you have some JavaScript in there that is keeping the browser from doing the default behavior on that anchor tag. We investigated a bit more and hit it after putting a breakpoint on line 3644:
help("#menu li a").attach("tap", function(e) {
e.preventDefault();
scroller.main.animateTo(-(help(this.attribute("href")).offset().top - instance.contentOffset));
help("#menu").removeClass("active").animate({"right": -260}, 150);
});
Maybe chat with whoever built your template and ask them how you can change it to do it what you'd like.