// 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();
    }
    // Remove squad list options for pre-order
     
    if(SKU8=='95403001'||SKU8=='95403109'||
        SKU8=='95403501'||SKU8=='95403901'||
        SKU8=='95404009'||SKU8=='95404401') {
      $('#squad_selected_label').hide();    
      $('#player_name').hide();    
      $('#customisation_or').hide();
      $('#custom_name').show();
      // Swap selected graphic
      $('#bespoke_selected_label').find('img').attr("src", 
       "/pws/images/btn_type_own_name_1.png");
       // Select bespokement!!   
      $('#squad_selected').attr('checked', false); 
      $('#bespoke_selected').attr('checked', true);
    }
  }
});
