function showNewsHP(){
  $.ajax({
	type: "POST",
	url: "snhp.php",
	data: "q=news",
	success: function(data) {
	  $("#rdsNews").append(data);
	}
  });
}
