$(document).ready(function(){
	$('.toggle').hide();
	$('a.toggle_link').click(function(){
		$(this).next('.toggle').toggle();
		return false;
	});
	$('a.view_all').click(function(){
		if($(this).text() == 'View All Answers')
		{
			$(this).text('Hide All Answers');
			$('.toggle').show();
		}
		else
		{
			$(this).text('View All Answers');
			$('.toggle').hide();
		}
		return false;
	});
});