$(document).ready(function(){

function redirectMe(yesno){
   window.location = 'http://www.nenetwork.org/Youth_Impact/One/map2/add_site_comment_form.php?submit='+yesno;
 }	
 
$('#deleteComment input').click(function(){
	if(confirm("Delete this Comment?")){
		var commentID = $(this).attr('name');
	
		$.ajax({
				type: "POST",
				url: "add_site_comment.php",
			  data: 'commentID='+commentID,
				success: function(msg){
			  /*$(".response").append("<span class='respondFormat'>"+msg+'</span><br />One moment please...');*/
				setTimeout (redirectMe(msg),1500);
				}
			});	
	}
}); 

/*------
Form Validation
------*/
$("#siteCommentForm").validate({
	    rules: { 
	      submitComment: { required: true }
	    }, 
	    messages: { 

	    },
	    submitHandler: function(form) {
					var formValues = $("#siteCommentForm").serialize();
					
					$.ajax({
					  type: "POST",
					  url: "add_site_comment.php",
					  data: formValues,
					  success: function(msg){
					  /*$(".response").append("<span class='respondFormat'>"+msg+'</span><br />One moment please...');*/
					 		 setTimeout (redirectMe(msg),1500);
					   }
					 });
	 		 }
	}); 
		 

});
