$(document).ready(function(){
    $('#menu-objects ul.leftmenu li a').hover(function(){
        if ($(this).parent().find('b').length){
            $(this).parent().find('b').css('color', "#ff0000");
        }
    }, function(){
        if ($(this).parent().find('b').length){
            $(this).parent().find('b').css('color', "#3969BB");
        }
    });
});
