/***************************************/
/*                                     */
/*   Script: Balaton.cz scripts file   */
/*   Author: Michal Kobelka            */    
/*           michalkobelka@gmail.com   */
/*           EtosComp.eu               */
/*                                     */
/***************************************/


$(document).ready(function(){

  $("#chat_form").validate();

  $(".vzreply a").click(function() {
  
    var naKoho = $(this).parent().parent().find(".user").text();
    //var text   = $(this).parent().parent().parent().find(".newstext").text();
    //text   = text.substring(0,200);
    //alert(naKoho);
    
    var id = $(this).parent().parent().parent().attr("id");
    id = id.substring(2,10);
    //alert(id);
    
    $("#odpoved").attr("value",id);
    
    $("#chat_message").val("Odpovìï: ");
  
  });

});
