﻿/// <reference path="jquery.intellisense.js" />

jQuery(document).ready(function() {

    var url = document.location.toString();
    

    $("DIV[id*=_nn_menu] ul li").each(function() {

        var href = $(this).children("a").attr("href");
        

        if (url.match(href)) //try to match url with the href value in menu
        {
            //alert("url: "+url+ " | href: "+ href );
            
            $(this).addClass("nncms_selected");
            //alert("found match:" + $(this).html());
        }


    })






})
