$(document).ready(function () {
	$('.termkatbox ul li.sub').hover(
		function () {
			$('ul:first', this).fadeIn("fast");
		}, 
		function () {
			$('ul', this).hide();
		}
	);
});

