if ($$('#dc-content .article-full .appendix p')) {
  content = $$('#dc-content .article-full .chapter.splash').clone();
  $$('#dc-content .article-full .chapter.splash').addClass('hdn');
  
  h = 626;
  w = 820;
  
  new Element('div', {
    'id': 'lbOverlay',
    'styles': {
      'opacity': 0.8
    },
    'events': {
      click: function() {
        $('lbOverlay').dispose();
        $('lbCenter').dispose();
      }
    }
  }).inject(document.body, 'bottom');
  
  new Element('div', {
    'id': 'lbCenter',
    'styles': {
      'height': h,
      'width': w,
      'top': '50%',
      'margin-top':  h/-2,
      'left': '50%',
      'margin-left': w/-2
    },
    'html': '<div id="lbImage">'+content.get('html')+'<p><div><a style="margin-right: 10px" id="lbCloseLink" href="#"></a></div>'
  }).inject(document.body, 'bottom');
  
  $('lbCloseLink').addEvent('click', function(event){
    event.stop();
    $('lbOverlay').dispose();
    $('lbCenter').dispose();
  })
}
