// Rangers 
$(document).ready(function() {  
  if($("#product_code").length>0) {
    SKU8 = $("#product_code").html(); 
    SKU8 = SKU8.substr(SKU8.length - 8);
    // Remove 09/10 Rangers printing options
    if(SKU8=='95402001'||SKU8=='95402091'||
       SKU8=='95402031') {    
     
      // Preselect no printing
      $("#printed_yes").attr('checked', false);
      $("#printed_no").attr('checked', true);
      $('#shirt_printed_cont').hide();
    }
  }
});

