function startLoading() {
	 $("#loading").show();
	 $("#allComments").hide();
	}
	function finishLoading() {
	 $("#allComments").show();
	 $("#loading").hide();
	 //setTimeout("Effect.toggle('mainAreaLoading');", 1000);
	}

function loadSections(url,s){
	startLoading();
	$("#allComments").load("/allcomments/"+url+"/"+s,'',function(){
		finishLoading();
	});
}

$(document).ready(function(){
	if(isComments){
	loadSections(rurl,1);
	}
  });