/********************************
* Author: Radek Juřica
* Contact: http://jurica.php5.cz
*          radek.jurica@gmail.com
*          207-179-209
*          +420 776 691 801
*
* You are NOT permitted to copy or distribute this source code.
* All rights reserved!
*/

$(document).ready(function() {
  $('#delete').click(function() {
      if (confirm('Doopravdy chceš smazat tuhle poptávku? ;)')) {
          return true;
      }

      return false
  });
  
});
