
$(function () {
    var currentPageScript = window.location.href;
    currentPageScript = currentPageScript.substring(currentPageScript.lastIndexOf('/') + 1);

    if (currentPageScript.lastIndexOf('?') > 0)
        currentPageScript = currentPageScript.substring(0, currentPageScript.lastIndexOf('?'));

    $('ul.menuLiv2').each(function () {
        $(this).find('a[href="' + currentPageScript + '"]').each(function () {
            $(this).parent().attr('class', 'menuLiv2Current');
            $(this).parent().children(":first").attr('src', 'images/common/puntoMenuCurrent.gif');
        });
    });
});

