﻿jQuery(document).ready(function ($) {
    jQuery("ul.breadcrumb li:last").addClass("selected");

    if (jQuery("ul.breadcrumb li:nth-child(2) a").html() == "Our Services") {
        var className = jQuery("ul.breadcrumb li:nth-child(2) a").html().replace(" ", "");

        jQuery("ul.breadcrumb li:nth-child(2) a").click(function () {
            jQuery(this).attr("href", "#mainMenu")
            var menuItem = jQuery(".topBarMenu ul li.menuItem_" + className + " a:first").parent().find("ul");
            ShowMegaMenu(menuItem);
        })
    };
});
