$(document).ready(function() { 
	$(".rightBlock > .toggle").each(function(){
		$(this).hide();
	});
	$(".rightBlock > h3 > a").click(function (event) {
		event.preventDefault();
		var target = $(this).attr('href');
		$(this).toggleClass("open");
		$(target).toggle();
	}); 
});