/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {

    $('div#menusContentAreaArticulo ul > li').hover( function(){
        $(this).css({'background-image':"url('http://www.syscom.com.mx/imagenes/notas/over_btn.jpg')"});
        $(this).addClass('mouseOver');
        $('li.mouseOver div > a').css({'color':"#FFFFFF"});
    },function(){
        $(this).css({'background-image':"url('http://www.syscom.com.mx/imagenes/notas/fondo_btn.jpg')"});
        $(this).removeClass('mouseOver');
        $('a.linkMenusContentAreaArticulo').css({'color':"#525FA3"});
    });

});