$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$('.entry').hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$('.title-container').click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});

});
