jQuery(function($) {
	$(document).ready(function(){
		$("#cat").tablesorter(); 
		$('.mm li').hover(
							function() {
								$(this).addClass("mmParentHover");
								$(this).find('ul').stop(true, true); 
								$(this).find('ul').slideDown();
								$(this).find('ul').addClass("mmActive");
									   },
							function() {
								$(this).removeClass("mmParentHover");
								$(this).find('ul').slideUp('fast');
									   }
						);
});
});

