$(document).ready(function()     
{

/*
Usage:
<a href="http://www.lepinskidesign.com.br/" rel="external">lepinskidesign.com.br</a>
*/

$("a[@rel$='external']").click(function(){
this.target = "_blank";
});
      

  $("#print").click(function(){
  
    window.print();
    
    return false;
  
  });
  
  
  
  $('.pics').cycle({ 
    fx:      'fade', 
    speed:   400,
    timeout:  6000 
    
    });
  $('.pics2').cycle({ 
    fx:      'fade', 
    speed:   1200, 
    timeout:  6000 
    
    });

$("#kontaktny-formular textarea").one("keydown", function(){
//  alert( $(this).text() );
  $(this).after('<input type="hidden" name="ook" value="ook" />');
});


});

