﻿$(document).ready(function () {
    var rootPath = 'Foley-Belsaw'; //remove the sub directory if there is one

    //Header Tabs
    $('#mainNav a').each(function (i, n) {
        page = window.location.pathname.substring(1).replace(/\//g, '').replace(rootPath, '').toLowerCase();
        var id = $(n).attr("id").toLowerCase();
        if (page == '') {
            page = 'home'; //default to home
        }
        if (id == page) {
            $(n).addClass("me");
        }
    });

    
});
