$(document).ready(function() {	
	$(".top-cat").mouseover(function(){		
		$(this).addClass('act-cat');		
	});
	
	$(".top-cat").mouseout(function(){
		$(this).removeClass('act-cat');		
	});
	
});
