$(document).ready(function(){
	
	$('div.link-cat').mouseover(function(){ $(this).addClass('over'); });
	$('div.link-cat').mouseout(function(){ $(this).removeClass('over'); });
	$('div.link-cat').click(function(){ $(this).next('table').toggle(); return false; });
});