// preview

$(function() {
	$('.preview').hide();

	$('#catalogo .categories LI A').hover(function(){
		$(this).parent().find('.preview').show();
	}, function(){
		$(this).parent().find('.preview').hide();
	});
});