$('#images a').mouseover(function() {
	$('#descriptions div').hide();
	$('#cat-description-' + $(this).attr('rel')).show();
});

$('#images a').mouseout(function() {
	$('#descriptions div').hide();
});
