﻿ $(document).ready(function() {
            var loc = window.location.href; // The URL of the page we're looking at
            $('#topNavList a').each(function() {
                if (loc.indexOf($(this).attr('href')) !== -1) { // If the URL contains the href of the anchor
                        $(this).addClass('selectedNav'); // Mark it as selected
                }
            });
        });

