$(document).ready(function () {
	$('.toggle-content li').click(function () {
		var text = $(this).children('p');
		if (text.is(':hidden')) {
			text.slideDown('200');
			$(this).children('span').html('-');
		} else {
			text.slideUp('200');
			$(this).children('span').html('+');
		}
	});
});
