$(document).ready(function() {
	$('div.follow').hide();
	$('span.comment').click(function(){
		var n=this.getAttribute("id");
		$('#follow'+n).toggle('normal');
	});


});



