/**
 * File: slimboxDisclaimerMod.js
 * This file modifies the behaviour of slimbox to add the disclaimer text found
 * in <div id="disclaimer">[Disclaimer text...]</div> to the caption of the
 * image
 * Prerequisites: slimbox.js
 */

Lightbox.show = function(url, title)
{
    var caption = "<div class='lightboxCaption'>";
    caption    += "<div class='title'>";
    caption    += title;
    caption    += "</div>";
    caption    += "<div class='disclaimer'>";
    caption    += document.getElementById("disclaimer").innerHTML;
    caption    += "</div>"
    caption    += "</div>";
    return this.open([[url, caption]], 0);
}