function detectPage(menuId) {
    var url = window.location.href;
    var links = $("#" + menuId + " a");
    links.each(function (index) {
        var curURL = $(this).attr("href");
        if (url.indexOf(curURL) > -1) {
            if (curURL != "http://www.jolidonfashion.com/" || (curURL == url && curURL == "http://www.jolidonfashion.com/")) {
                $(this).addClass("active-page");
                return false;
            }
        }
    });
}
