// ===================================
// Apparel Product Details
// ===================================
  // STYLE: BASE LAYER BOXER
  style = {
    name:               'Base Layer Boxer',
    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:                   100569,
    color:                'Black',
    number:               '44215-001',
    upcs:                 [],
    default_upc:          null,
    large_images:         [],
    lightbox_images:      [],
    current_image_index:  null
  };
  skus["100569"] = sku;
  current_sku = sku;

  // SIZE: S
  upc = {
    id:             "882893078959",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "100.00",
	tab_size:    'S',
    size:           "S"
  };
  sku.upcs["S"] = upc;
  sku.default_upc = upc;
  // SIZE: M
  upc = {
    id:             "882893078966",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "100.00",
	tab_size:    'M',
    size:           "M"
  };
  sku.upcs["M"] = upc;

  // SIZE: L
  upc = {
    id:             "882893078973",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "100.00",
	tab_size:    'L',
    size:           "L"
  };
  sku.upcs["L"] = upc;

  // SIZE: XL
  upc = {
    id:             "882893078980",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "100.00",
	tab_size:    'XL',
    size:           "XL"
  };
  sku.upcs["XL"] = upc;

  // SIZE: XXL
  upc = {
    id:             "882893078997",
    availability:   "Usually ships next business day",
    can_sell:       true,
    price:          "100.00",
	tab_size:    'XXL',
    size:           "XXL"
  };
  sku.upcs["XXL"] = upc;

  sku.current_image_index = 0;
  sku.large_images.push("/a/30/08/BAh7CGkKIgwyNjh4Mzg1aQtsKwfZcJRJaQhpApBu.jpg");
  sku.lightbox_images.push("/a/83/97/BAh7CWkKIgo2MDB4MGkLbCsH2XCUSWkHaQtpCGkCkG4.jpg?size=543x780");
