$(function(){
	$(".sub_actions").hide();
	
	$(".name").hover(function(){
		$(this).children("td:first").children(".sub_cont").children(".sub_actions").show();
	}, function(){
		$(this).children("td:first").children(".sub_cont").children(".sub_actions").hide();
	})
})