$(document).ready(function(){
	$(".sendCommentButton").click(function(){
		//alert("shit");
		$(".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("");
					

		      },
		      error: function (msg) {
                     
		      }
		     });
		return false;
	})
	
	
	$(".show").click(function(){
    tb_show('Nová služba pro návštěvníky divadla','/public/tpl/default/images/divadlo.jpg');
	})
	
		
});


