$(document).ready(function() {
	
	$('div.toggle').hide();
	
	$('div.opinion > a').click(function() {
		$(this).parent().children(".toggle").toggle("slow");
		return false;
	});

});
