$(function() {
  var $videoLinks = $('a[href$=".flv"]');
  
  if (typeof easytoog_admin !== 'undefined') {
    $videoLinks.click(function(e) {
      e.preventDefault();
      alert('Disponible seulement en publié');
      return false;
    });
  } else {
    $videoLinks.each(function() {
      var $this = $(this)
          href = $this.attr('href');
      
      if (!/\/videos\//.test(href) && !/\/documents\//.test(href)) {
        $this.click(function() {
          alert('Vidéo indisponible.');
        });
        return;
      }
      $this
        .attr('href', '/video.php?url='+href)
        .colorbox();
    });
  }

  $('*[data-href]').click(function() {
    location.href = $(this).data('href');
  });
});
