$("document").ready(function(){
	  $(".actor-column a").hover(function() {
		  $(this).next().slideDown("slow");
	  }, function() {
		  $(this).next().slideUp("fast");
	  });
	});
