    $(document).ready(function () {

        // store url for current page as global variable
        current_page = document.location.href

        // apply selected states depending on current page
        if (current_page.match(/Home/)) {
            $("#headnav01").attr('class', 'navSelected');

        } else if (current_page.match(/OurRecipes/)) {
            $("#headnav02").attr('class', 'navSelected'); //on site land
        } else if (current_page.match(/CookBook/)) {
            $("#headnav03").attr('class', 'navSelected');
        } else if (current_page.match(/GroceryList/)) {
            $("#headnav04").attr('class', 'navSelected');
        } else if (current_page.match(/FiveRoses/)) {
            $("#headnav05").attr('class', 'navSelected');


            // don't mark any nav links as selected
        } else {
            $("#headnav0").attr('class', 'blank');
        };


    });
