/**
 * @author Tom
 */

$(document).ready(function(){
   $("#main-content table tr td a img").hover(function() {
   	 $(this).parent("a").parent("td").parent("tr").children("td").next().children("p").fadeIn("slow");
   },function(){
   	 $(this).parent("a").parent("td").parent("tr").children("td").next().children("p").fadeOut("slow");
   });
 });