/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
  $('.talkTo').click(function(){
    var id = $(this).attr('id').split('_');
    $.ajax({
      type: 'GET',
      url: 'http://widget.gadu-gadu.pl/getCode.php?id=' + id[1],
      //data: 'ggCode=' + id[1],
      dataType: "script",
      success:function(c){
        $('#chat').append(c);
        $('#chat').show();
//        $('#chat').hide();
//        $('#chat').show();
      }
    });
  });
});
