$(document).ready(function() {
	$('.toggle-content').hide();
	$('.toggle-link').click(function(){
		$(this).next('.toggle-content').slideToggle(400);
		return false;
	});
});