$(document).ready(function () {
    $("#topics li").hover(
		function () {
	        $(this).find(".thetags").fadeIn(200);
	      }, 
	      function () {
	        $(this).find(".thetags").fadeOut(200);
	      }
	   
	);
	
});
