$(document).ready(function(){
	$(".sendCommentButton").click(function(){
		$(".commentWarnText").remove();
		$.ajax({
		      type: "POST",
		      url: url+"default/article/add-comment/",
		      data: ($('form')).serialize()+"&idAte="+$('.idAte').attr('id'),
		      async: true,          
		      success: function(msg) {   
					$(".commentsWrap").prepend(msg);
					$(".sendCommentTextForm").val("");
					$(".sendCommentTextName").val("");
					$(".sendCommentTextEmail").val("");				
		      },
		      error: function (msg) {
                     
		      }
		     });
		return false;
	})
	
	
	$(".submenu li:last").css('background','none');		
	

});

