function showLastComment(id) {
	      				advAJAX.get({
						url: "/getLastComment.php?cid="+id,
						onSuccess : function(obj) { 
							
							var resp = obj.responseText;
							document.getElementById('lastComment').innerHTML = obj.responseText;
							$(document).ready(function(){
								var options = {};
								$( "#lastComment" ).show( 'blind', options, 500 );
							});

							},
						onError : function(obj) { alert("Error: " + obj.status); }
						});
}
