// Declare data structures into memory - don't edit the following two lines
Price = new Array(); Item = new Array(); Shipping = new Array(); Shipping.USA = new Array();
Shipping.Canada = new Array(); Shipping.HongKong = new Array();


// MINIMUM POUNDS TO QUALIFY FOR A FREE POUND ///////////////
// In the event you no longer want to offer this incentive, and you would like to disable this feature, set its value to -1
Minimum_Pounds = -1;


// PRICING ///////////////
// Example: Price.Wb16 represents the whole bean 1-pound price while Price.Gr16 is the ground 1-pound price

// Two Ounce
Price.Wb2 = 4;
Price.Gr2 = 4.25;

// 1/2 Pound (8 oz)
Price.Wb8 = 13;
Price.Gr8 = 13.5;

// 1 Pound (16 oz)
Price.Wb16 = 23;
Price.Gr16 = 23.5;

// 5 Pounds (80 oz)
Price.Wb80 = 105;
Price.Gr80 = 110;



// CAFE ROAST ///////////////

// Whole Bean
Item.CrWb2 = [ "2 Ounces", "Cafe Roast Whole Bean" ];
Item.CrWb8 = [ "&frac12; Pound", "Cafe Roast Whole Bean" ];
Item.CrWb16 = [ "1 Pound", "Cafe Roast Whole Bean" ];
Item.CrWb80 = [ "5 Pounds", "Cafe Roast Whole Bean" ];

// Ground
Item.CrGr2 = [ "2 Ounces", "Cafe Roast Ground" ];
Item.CrGr8 = [ "&frac12; Pound", "Cafe Roast Ground" ];
Item.CrGr16 = [ "1 Pound", "Cafe Roast Ground" ];
Item.CrGr80 = [ "5 Pounds", "Cafe Roast Ground" ];




// DARK ROAST ///////////////

// Whole Bean
Item.DrWb2 = [ "2 Ounces", "Dark Roast Whole Bean" ];
Item.DrWb8 = [ "&frac12; Pound", "Dark Roast Whole Bean" ];
Item.DrWb16 = [ "1 Pound", "Dark Roast Whole Bean" ];
Item.DrWb80 = [ "5 Pounds", "Dark Roast Whole Bean" ];

// Ground
Item.DrGr2 = [ "2 Ounces", "Dark Roast Ground" ];
Item.DrGr8 = [ "&frac12; Pound", "Dark Roast Ground" ];
Item.DrGr16 = [ "1 Pound", "Dark Roast Ground" ];
Item.DrGr80 = [ "5 Pounds", "Dark Roast Ground" ];




/// MEDIUM ROAST ///////////////

// Whole Bean
Item.MrWb2 = [ "2 Ounces", "Medium Roast Whole Bean" ];
Item.MrWb8 = [ "&frac12; Pound", "Medium Roast Whole Bean" ];
Item.MrWb16 = [ "1 Pound", "Medium Roast Whole Bean" ];
Item.MrWb80 = [ "5 Pounds", "Medium Roast Whole Bean" ];

// Ground
Item.MrGr2 = [ "2 Ounces", "Medium Roast Ground" ];
Item.MrGr8 = [ "&frac12; Pound", "Medium Roast Ground" ];
Item.MrGr16 = [ "1 Pound", "Medium Roast Ground" ];
Item.MrGr80 = [ "5 Pounds", "Medium Roast Ground" ];


//////////////////////////////////////// TAXES & SHIPPING ////////////////////////////////////////

Hawaii_State_Tax = 4.167;

Shipping.USA.Pound_1 = 5.00;
Shipping.USA.Pound_2 = 12.00;
Shipping.USA.Pound_3 = 12.00;
Shipping.USA.Pound_4 = 15.00;
Shipping.USA.Pound_5 = 15.00;
Shipping.USA.Pound_6 = 20.00;
Shipping.USA.Pound_7 = 25.00;
Shipping.USA.Pound_8 = 32.00;
Shipping.USA.Pound_9 = 32.00;
Shipping.USA.Pound_10 = 40.00;
Shipping.USA.Pound_11 = 40.00;
Shipping.USA.Pound_12 = 40.00;
Shipping.USA.Pound_13 = 45.00;
Shipping.USA.Pound_14 = 55.00;
Shipping.USA.Pound_15 = 55.00;
Shipping.USA.Pound_16 = 55.00;
Shipping.USA.Pound_17 = 60.00;
Shipping.USA.Pound_18 = 60.00;
Shipping.USA.Pound_19 = 65.00;
Shipping.USA.Pound_20 = 65.00;
Shipping.USA.Pound_21 = 69.55;
Shipping.USA.Pound_22 = 79.75;
Shipping.USA.Pound_23 = 79.75;
Shipping.USA.Pound_24 = 77.70;


Shipping.Canada.Pound_1 = 18.40;
Shipping.Canada.Pound_2 = 19.80;
Shipping.Canada.Pound_3 = 21.20;
Shipping.Canada.Pound_4 = 22.60;
Shipping.Canada.Pound_5 = 24.10;
Shipping.Canada.Pound_6 = 25.60;
Shipping.Canada.Pound_7 = 27.10;
Shipping.Canada.Pound_8 = 28.60;
Shipping.Canada.Pound_9 = 30.10;
Shipping.Canada.Pound_10 = 31.70;
Shipping.Canada.Pound_11 = 33.30;
Shipping.Canada.Pound_12 = 34.90;
Shipping.Canada.Pound_13 = 36.50;
Shipping.Canada.Pound_14 = 38.10;
Shipping.Canada.Pound_15 = 39.70;
Shipping.Canada.Pound_16 = 41.30;
Shipping.Canada.Pound_17 = 42.90;
Shipping.Canada.Pound_18 = 44.50;
Shipping.Canada.Pound_19 = 46.10;
Shipping.Canada.Pound_20 = 47.70;


Shipping.HongKong.Pound_1 = 10.30;
Shipping.HongKong.Pound_2 = 16.90;
Shipping.HongKong.Pound_3 = 23.50;
Shipping.HongKong.Pound_4 = 40.50;
Shipping.HongKong.Pound_5 = 44.25;
Shipping.HongKong.Pound_6 = 48.00;
Shipping.HongKong.Pound_7 = 51.75;
Shipping.HongKong.Pound_8 = 55.50;
Shipping.HongKong.Pound_9 = 59.25;
Shipping.HongKong.Pound_10 = 63.00;
Shipping.HongKong.Pound_11 = 66.75;
Shipping.HongKong.Pound_12 = 70.50;
Shipping.HongKong.Pound_13 = 74.25;
Shipping.HongKong.Pound_14 = 78.00;
Shipping.HongKong.Pound_15 = 81.75;
Shipping.HongKong.Pound_16 = 85.50;
Shipping.HongKong.Pound_17 = 89.25;
Shipping.HongKong.Pound_18 = 93.00;
Shipping.HongKong.Pound_19 = 96.75;
Shipping.HongKong.Pound_20 = 100.50;