$(document).ready(function(){
						   $("form#newsComments").submit(function(){
                               //alert($("input#newsID").val());
																  $("form#newsComments span#notice").show().html("please wait..");
																  $.post("_bin/newsCommentsProcess.php", {name:$("input#name").val(),email:$("input#email").val(),comment:$("textarea#comment").val(),news_id:$("input#newsID").val()}, function(data){
																$("form#newsComments span#notice").hide().html("");														
alert(data);																																																					})
																  
																  return false;
																  })
						   });
