$(document).ready(function() {
  /*
   * http://docs.jquery.com/Selectors
   *   = is exactly equal
   *   != is not equal
   *   ^= is starts with
   *   $= is ends with
   *   *= is contains
   *
   */
    
  //$('a[href^="http:"]').not('[href*="beefinfo.org"]').attr('rel', 'external').attr('target', '_blank');
    
  /*     
   * all links to the order center take people to: http://ordercentre.beefinfo.org/ca/en/consumer
   * which displays fine, but doesn't allow you to modify/checkout your order
   * update links to go to http://ordercentre.beefinfo.org/ca/en/consumer/Default.aspx
   */
  $('a[href="http://ordercentre.beefinfo.org/ca/en/consumer"]').attr('href', 'http://ordercentre.beefinfo.org/ca/en/consumer/default.aspx').attr('target', '_blank');
  $('a[href="http://ordercentre.beefinfo.org/ca/en/consumer/"]').attr('href', 'http://ordercentre.beefinfo.org/ca/en/consumer/default.aspx').attr('target', '_blank');
  
  // add the img class 'headerimage' to beef radio page
  // http://www.beefinfo.org/Default.aspx?ID=13&ArticleID=153&SecID=3
  if ($('h1').length && $('h1').html() == 'Beef Radio') {
    $('#MidCenterCol .content').find('img').addClass('headerimage');
  }
});