devote
Спасибо, то что нужно.
Интересует еще вот что
<script type="text/javascript">
    $("#host-table th,#vds-table th").mouseover(function() {
        var tds = $( this ).parent().find("th"),
            index = $.inArray( this, tds );
        $("#host-table th:nth-child,#vds-table th:nth-child("+( index + 2 )+")").css("background-color", "#F1F1E9");
    }).mouseout(function() {
        var tds = $( this ).parent().find("th"),
            index = $.inArray( this, tds );
        $("#host-table th:nth-child,#vds-table th:nth-child("+( index + 2 )+")").css("background-color", "");
    });
</script>
как мне добавить к примеру тень или рамку к выделяемому столбцу?
например рамку
.css("background-color", "#F1F1E9", "border", "1px")
эта запись не работает
или я не правильно записываю?