$(function() {

		function getMess(id){
			$.ajax({
				type: "POST",
				url: "vals/operations.php",
				data: "do=getmess&id="+id,

				success: function(result) {
					// apply star rating to element

                    $("#msg").html(result);
				},
				error: function(result) {
					alert("Ospravedlňujeme sa za vzniknutý problém na jeho vyriešení už pracujeme");
				}
			});
		}


        function getMess_all(id){
			$.ajax({
				type: "POST",
				url: "vals/operations.php",
				data: "do=getmess_all&id="+id,

				success: function(result) {
					// apply star rating to element

                    $("#msg1").html(result);
				},
				error: function(result) {
					alert("Ospravedlňujeme sa za vzniknutý problém na jeho vyriešení už pracujeme");
				}
			});
		}




$(".submit").click(function() {


    var bar = $("#id_ak_mes").val();
	var user = $("#id_us_mes").val();
	var mess = $("#textBox_message").val();
    var limit = $("#lmt").val();


    var dataString = 'barr='+ bar + '&userr=' + user + '&message=' + mess ;


	$.ajax({
	type: "POST",
    url: "vals/operations.php",
    data: dataString,
    success: function(){
	$("#textBox_message").val("");
    $("#msg").text("");
       getMess(bar);
       getMess_all(bar);
   }
});



    return false;
	});
});
