(function() {

  Product.discountCheckPath = '/purchase/discount_code/index.php';

  Product.businessEmail = "andrew@idiasproduction.com";

  /*
  Prompt for a shipping address, and require one
  
   Other values are:
    0 - prompt for an address, but do not require one
    1 - do not prompt for an address
    2 - prompt for an address, and require one
  */

  Product.paypalRequireShipping = 2;

  Product.products = [
    {
      id: 1,
      displayName: 'Go for English Program, Units 1&2',
      price: 299
    }, {
      id: 2,
      displayName: 'Additional flashcards: Unit 1',
      price: 20
    }, {
      id: 3,
      displayName: 'Additional flashcards: Unit 2',
      price: 20
    }, {
      id: 4,
      displayName: 'Additional Workbooks for Unit 1',
      price: 16
    }, {
      id: 5,
      displayName: 'Additional Workbooks for Unit 2',
      price: 16
    }
  ];

}).call(this);

