// ===================================
// Apparel Product Details
// ===================================
  // STYLE: BASE LAYER BOTTOM
  style = {
    name:               'Base Layer Bottom',
    can_display:        true,
    sku_count:          1,
    has_multiple_sizes: true,
    sizing_name:        'general',
    sizing_tabs:        ['size'],
    sizing_regex:       '/^(.+)$/'
  };
  skus = [];
  var current_sku;
  current_size = null;

  // COLOR: Black
  sku = {
    id:                   100591,
    color:                'Black',
    number:               '42192-001',
    upcs:                 [],
    default_upc:          null,
    large_images:         [],
    lightbox_images:      [],
    current_image_index:  null
  };
  skus["100591"] = sku;
  current_sku = sku;

  // SIZE: S
  upc = {
    id:             "882893078904",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "130.00",
	tab_size:    'S',
    size:           "S"
  };
  sku.upcs["S"] = upc;
  sku.default_upc = upc;
  // SIZE: M
  upc = {
    id:             "882893078911",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "130.00",
	tab_size:    'M',
    size:           "M"
  };
  sku.upcs["M"] = upc;
  
  // SIZE: L
  upc = {
    id:             "882893078928",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "130.00",
	tab_size:    'L',
    size:           "L"
  };
  sku.upcs["L"] = upc;
  
  // SIZE: XL
  upc = {
    id:             "882893078935",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "130.00",
	tab_size:    'XL',
    size:           "XL"
  };
  sku.upcs["XL"] = upc;
  
  // SIZE: XXL
  upc = {
    id:             "882893078942",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "130.00",
	tab_size:    'XXL',
    size:           "XXL"
  };
  sku.upcs["XXL"] = upc;
  
  sku.current_image_index = 0;
  sku.large_images.push("/a/70/8d/BAh7CGkKIgwyNjh4Mzg1aQtsKwcKInpKaQhpArBu.jpg");
  sku.lightbox_images.push("/a/6c/33/BAh7CWkKIgo2MDB4MGkLbCsHCiJ6SmkHaQtpCGkCsG4.jpg?size=600x862");
