﻿(function($) {
    $.fn.StyleCurrentMenu = function(className, startPage) {
        var aAdress = location.href.split("kyssinge.se/");
        var sPage = aAdress[aAdress.length - 1];

        if (sPage.length == 0) { sPage = startPage; }
        if (sPage.toString().indexOf("/") != -1) { sPage = sPage.split("/")[0]; }
        sPage = "/" + sPage;
        $("#" + this.attr("id") + " a").each(function() {
            if ($(this).attr("href") == sPage) {
                return $(this).parent("li").addClass(className);
            }
        });
    }
})(jQuery);
