

$(document).ready(function() {

 $('a[href^="http://"]')
  .attr({
    target: "_blank",
    title: "Odkaz do nového okna"
   });
 
 $('a[href$=".pdf"]')
  .attr({
    target: "_blank",
    title: "PDF katalóg"
   });


  // OPEN EXTERNAL LINK
  $(".external").filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  })
  .click(function() {
    window.open(this.href);
    return false;
  });


  
 //prettyPhoto
 $(".gallery a[rel^='prettyPhoto'], .gallery_one a[rel^='prettyPhoto'], .gallery_rucna a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});


 
 $('.pics').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('img.captify').captify({});
	
});

