$(function() {
	$('.posts-list li h3').click(function() {
		if (!$(this).next().hasClass('open')) {
			$(this).next().slideDown().addClass("open");
		} else {
 			$(this).next().slideUp().removeClass("open");
		}
	}).next().hide().removeClass("open");
});
