try http://jsfiddle.net/guyisra/hDafj/5/ , which can help you get started (you need to fix the alignment, which you can use yourself
use js to add class and css to freeze strings
$(".btn-group a").hover(function () { $(this).addClass("btn"); }, function () { $(this).removeClass("btn"); } );
CSS
.btn-group { visibility:hidden; } table tr:hover .btn-group { visibility:visible; }
Nick ginanto
source share