$(document).ready(function(){
    $("a.fx-boton_taxonomia, #botonera_categorias a").mouseover(function(){
        $(this).removeClass("fx-boton_taxonomia_hover").stop().animate({ backgroundColor: "#aaa" }, 150, null, function(){$(this).addClass("fx-boton_taxonomia_hover")});
    });

    $("a.fx-boton_taxonomia, #botonera_categorias a").mouseout(function(){
        $(this).stop().animate({ backgroundColor: "black" }, 150);
    });
});
