$(function() {
	$('#faq,.faq').find('dd').hide().end().find('dt').click(function() {
		$(this).parent().find('dd').hide().end().find('dt').removeClass('abierto');

		$(this).addClass('abierto').next().show();
	}).hover(
		function() {
			$(this).addClass('hover')
		},
		function() {
			$(this).removeClass('hover')
		}
	);
});