/*
http://drh.img.digitalriver.com/DRHM/Storefront/Site/tmapac/cm/multimedia/OT_files/tmapac_ShoppingCartPage_contentBody.js
http://a248.e.akamai.net/f/248/5462/2h/store.digitalriver.com/DRHM/Storefront/Site/tmapac/cm/multimedia/OT_files/tmapac_ShoppingCartPage_contentBody.js
*/
if (/zh_TW/i.test(drso.url)) { // TW local
    // Portfolio: Site Opt
    // Subject: tmapac_TW_shoppingcart
    (function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/398/p/tmapac_tw_shoppingcart.6bb/95/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.R(1000,null,null,null);})();
}


//script for deciphering which pid is in the cart so that we can capture it in the test on the billing page.  Remove when the billing page test is done.  Ari Koinuma 10/4/2010
$(function(){
  if (/zh_TW/i.test(drso.url)) {
    //grab the pid
    $('input[name^="selectedVariationProductID"]').each(function(){
    
      //if the cookie is not already set
      if (!drso.getCookie('op_biztype')) {
        var pid = $(this).val();
        var bizType = 'other'; //if it's not on the list, then it's other
        switch (pid) {
          //new
          case '108674900':
          case '110080200':
          case '164913500':
            bizType = 'new';
            break;
          case '214411800':
          case '214411700':
          case '214411400':
          case '108878700':
          case '120006500':
          case '164913300':
            bizType = 'trial-convert';
            break;
          case '214155000':
          case '108677200':
          case '108677100':
          case '125380300':
            bizType = 'renew';
            break;
          case '164795500':
          case '164795700':
          case '164795900':
          case '108879100':
          case '110061600':
          case '125380600':
            bizType = 'upsell';
            break;
        }
        
        drso.setCookie('op_biztype', bizType, drso.getDomain(), null);
      }
      
    });
  }
});

