function getNews(pg, tot)
{
	$.blockUI({ message: $("#loadding") });
	
	$.ajax({
				   type: "GET",
				   url: "news/getNews.php",
				   data: "tot="+tot+"&pg="+pg,
				   contentType: "text/html; charset=windows-1256",
				   dataType: "HTML",
				   cache: false,
				   success: function(data){
					$("#myMainNewsDivOne").html(data);
					Rounded('rounded2', 0, 0, 10, 10);	
					 $.unblockUI();  
				   }
				 });

}
