﻿$(function() {
    $("#MainMenu li").each(function(i) {
        var link = $(this).children("a");
        if ($(link).attr("href") == location.pathname) {
            $(link).css("background", "url('/Images/Menu/Active.gif') no-repeat");
        }
    });
});
