function initColorbox()
{
  // The callback function calls this function every time colorbox is opened.
  $('a.supplementary').colorbox({}, initColorbox);
  $('a.supplementary.iframe').colorbox({ iframe: true, innerWidth: 670, innerHeight: 500 }, initColorbox);
  $('a.supplementary.iframe.maxed-out').colorbox({ iframe: true, innerWidth: 980, innerHeight: 550 }, initColorbox);
}

$(document).ready(function(){
  // Superfish Menu
  $('ul.sf-menu').superfish();
  // PNG Fix
  $('div.search-image').pngFix();
  // ColorBox
  if($.fn.colorbox) initColorbox();
  // Elastic Buttons
  $('.elastic-button').hover(
    function(){ $(this).addClass('elastic-button-hover'); },
    function(){ $(this).removeClass('elastic-button-hover'); }
  );
  // Image Rollovers
  PEPS.rollover.init();
});