$(document).ready(function(){
	$("a[title='comments']").click(function(){
		$("#text").hide();
		$("#comments").show();
	});
	
	$(".close").click(function(){
		$("#comments").hide();
		$("#text").show();
	});	
});