// We're using Lightbox 2, which prefers prototype so rather than
// rewrite let's just make jquery take the high road
if (typeof(jQuery) != 'undefined') {
  jQuery.noConflict();

  (function($) {
    $(function() {
      $('#fader').galleryFader({
        'showDuration': 3000,
        'useThumbnails': false
      });
    });
  })(jQuery);
}

