jQuery.noConflict();
jQuery(document).ready(function(){
  jQuery('a.shadowbox').click(function(event) {
    event.preventDefault();
    Shadowbox.open({
      content: this.href,
      player: jQuery(this).hasClass('flv') ? 'flv' : 'iframe',
      width: jQuery(this).hasClass('flv') ? 540 : 575,
      height: jQuery(this).hasClass('flv') ? 360 : 420
    });
  });
});

Event.observe(window, 'load', function(){
  if ($('gallery-first')) {
    $$('body').first().insert($('more_views').remove());

    $('photos').href = $('gallery-first').href;
    $('gallery-first').remove();
    $('photos').writeAttribute('title', false);

    var galleryLinks = $$('a.gallery');
    if (galleryLinks.size()) {
      Shadowbox.setup(galleryLinks, { gallery: 'More Pictures' });
    }
  } else {
    $('photos').remove();
  }
});

