﻿$(function () {
    var pathCurrent = location.pathname.substring(1).split("/")[0];
    if (pathCurrent === "Services") {
        pathCurrent = "Services/Denver/Microsoft";
    }
    $("nav a[href='/" + pathCurrent + "']").addClass("current");
});
