﻿$(document).ready(function () {

    $('#MenuPrincipal a').each(function (i) {

        idMenu = $(this).attr('id');

        if ((this == document.location.href) && (idMenu != '')) {

            $('#' + idMenu).attr({ 'class': 'colorLienMenu' });

        }

    });

});
