/* Subnav Highlight */
function subnavHighlight() {
    $(".subnav a").each(function(){
        var href         = $(this).attr("href").toString().split("/").pop();
        var location    = window.location.toString().split("/").pop();
        if(location==href || (location=="" && (href=="index.htm" || href=="index.html"))) {
            $(this).parent().addClass("selected");
        }
    })
}



