$(document).ready(function() {
	$('.opinions .opinion_header, .opinions .short_text').click(function(e){
		e.preventDefault();
		$(this).parent().toggleClass('opened');
	});
							   
});
