$(document).ready(function() {
	$('a.comments').click(function(e){
   		//e.preventDefault();
		
		$(this).parent().find('form').toggle();
   		return false;
	});						   
});