$(function(){

    // Подсветка знаков
    $('#rule_display a').hover(
        function(){
            $('a[href=' + $(this).attr('href') + ']',
                $(this).parents('.rule_text')).addClass('hover');
        }, function(){
            $('a[href=' + $(this).attr('href') + ']',
                $(this).parents('.rule_text')).removeClass('hover').removeAttr('class');
        }
    );
    $('#rule_display a[href*=sign]').click(function(e){
        e.preventDefault();
    });
});