jQuery(function(){
    jQuery('.show .item-img').imagefit();
    jQuery('.browse .item-img').imagefit();
    jQuery('#section-start #featured-item-img').imagefit();
    jQuery('#casestudies-list li .item-img').imagefit();
});

jQuery(function(){
  jQuery('.show #secondary').addPrintButton();
});
jQuery.fn.addPrintButton = function() {
  return this.each(function(){
    jQuery('<button class="print-button">Print this page</button>')
      .click(function(){window.print();})
      .prependTo(this);
  });
}

