/**
 * @author Martin
 */

$(document).ready(function() {
	$('#domains_questions .answer').hide();
	var openIt = function() {
 		$(this).next().slideDown('slow');
 		$(this).addClass('opened');
 	};

 	var closeIt = function() {
 		$(this).next().slideUp('slow');
 		$(this).removeClass('opened');
 	};

	$('#domains_questions h4').toggle(openIt, closeIt);
	
});


