//---------------------------------------------------------------
// Activation des lightbox pour les liens ayant comme attribut:
// rel="lightbox"
//---------------------------------------------------------------

$(function() {
    // Select all links that contains lightbox in the attribute rel
    $('a[@rel*=lightbox]').lightBox();
});

