﻿$(function () {
    $(".MenuHorizontal").mouseover(function () {
        $(this).css("background-image", "url('../images/componentes/fundoMenuAtivo.jpg')");
        $(this).css("color", "#000");
    });
    $(".MenuHorizontal").mouseout(function () {
        $(this).css("background-image", "url('../images/componentes/fundoMenu.jpg')");
        $(this).css("color", "#fff");
    });
});


function carregaPagina(link) {
    location.href = link;
}
