$(function() {
	$(".editable_autor").editable("editable.php?ac=update_autor", {
      indicator : '<img src="../img/indicator.gif">',
      loadurl : "autor_json.php",
      type   : "select",
      submit : "OK",
      style  : "inherit"
  	});
  	$(".editable_autor_new").editable("editable.php?ac=add_autor", {
        indicator : "<img src='../img/indicator.gif'>",
      tooltip   : "Nowy autor",
      style  : "inherit"
  	});

  	$(".editable_dodal").editable("editable.php?ac=update_dodal", {
      indicator : "<img src='../img/indicator.gif'>",
      tooltip   : "Kliknij w celu edycji...",
      style  : "inherit"
  	});
  	
  	$(".editable_www").editable("editable.php?ac=update_www", {
      indicator : "<img src='../img/indicator.gif'>",
      tooltip   : "Kliknij w celu edycji...",
      style  : "inherit"
  	});
  	$.editable.addInputType('autogrow', {
    element : function(settings, original) {
        var textarea = $('<textarea>');
            textarea.attr('rows', 5);
            textarea.attr('cols', 25);
       
        $(this).append(textarea);
        return(textarea);
    }
    });
  	$(".editable_tresc").editable("editable.php?ac=update_tresc", {
      indicator : "<img src='../img/indicator.gif'>",
       type      : 'autogrow',
      submit    : 'OK',
      cancel    : 'Cancel',
      tooltip   : "Click to edit...",
      onblur    : "ignore",
      autogrow : {
         lineHeight : 6,
         maxHeight  : 512
      }
  	});

  	$(".editable_kategoria").editable("editable.php?ac=update_kategoria", {
    indicator : '<img src="../img/indicator.gif">',
    loadurl : "select_json.php",
    type   : "select",
    submit : "OK",
    style  : "inherit"
   });
   	$(".editable_kategoria_new").editable("editable.php?ac=add_kategoria", {
        indicator : "<img src='../img/indicator.gif'>",
      tooltip   : "Nowa kategoria",
      style  : "inherit"
  	});
});