$(function() {
		$("tr.meta").hide();
		
	    $("tbody.vevent").hover(
      		function () {
        		$(this).children(".meta").show();
      		}, 
      		function () {
        		$("tr.meta").hide();
      		}
    	);
	});