// externí odkazy
$(document).ready(function(){
  $('a.linkExternal').click(function(){
    window.open(this.href);
    return false;
  });
});

// colorbox
$(document).ready(function(){
  $('.colorbox').colorbox({transition:'elastic', speed:350, current:"video {current} z {total}", opacity: 0.7});
});

$(document).ready(function(){
  $('.colorboxImg').colorbox({transition:'elastic', speed:350, current:"obrázek {current} z {total}", opacity: 0.7});
});

// close colorbox
function closeFLVplayer(){  
  $.fn.colorbox.close(); 
}

