// Custom shopping cart for concentric.org, v2.3.01 
// Information Database, all general edits should be done here.  
// Logic coding is in another file and for the most part should not need to be changed.  
// Sample blocks are provided for adding new products.

// General variables for all products.
var objShipping = {
	one: 5,//Shipping for first break
	two: 8,//Shipping for second break
	three: 10,//Shipping for third break
	special: 8//Shipping for special, probably the same as two
}

var intAdditionalShipping = 1.5;

var objStandardPricing = {
	one: 15,//Price for first break
	two: 9.5,//Price for second break
	three: 7.5,//Price for third break
	special: 100,//Price for special
	vhs: 5//Price for VHS version
	
}
var intBreak1 = 4; // First number for second price
var intBreak2 = 13; // First Number for third price
var intSpecialBreak = 12; //Number for special
var intTaxRate = .0825; // Tax rate

// Messages, symbols, and other such things.
var strMonetarySymbol        = '$';
var strTaxPrompt             = 'For tax purposes, please select if you are a California resident before continuing';
var strRemove = "Click 'Ok' to remove this product from your shopping cart.";
var intCartDuration = 30; // Days the cart will last
var strCartName = "ShoppingCart";
var strErrorQuantity = "Invalid Quantity.";
var strEbayID = "order@concentric.org";


// Sample code block for a new product with comments, recommend copying a live product and modifying.
// Product ID Number must be unique
//
//	  dvd01: {ProductName: 'Test DVD Product',    // dvd01 - Used to identify in the html form.  Must be unique, should go dvd01, dvd02, dvd03, mlr01 for mailers etc. Next is name to display to customer and on order form.
//	  		  PriceBreak: 'Break',  			  // PriceBreak True/False, true to count for assortability
//			  ShipBreak: 'Break',				  // ShipBreak True/False/Special, true to count for shipping assortability, Special for special extra shipping
//	  		  ProductPrice: {one: 15,   		  // Price for single items, up to number specified above about price break.  Can have specific prices for different dvds, use objStandardPricing.one etc to use standard pricing
//	    					 two: 8.5,		      // Price for item after price break
//    	     				 three: 7.5,		  // Price for item after 3rd price break, This line does not have a comma, adding a comma will break the script in Internet Explorer.
//							 special: 100}},	  // Price for special amount, one dozen for 100.

var objProductList = {	VOTE: {ProductName: 'STEALING AMERICA: Vote by Vote',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,  
												two: objStandardPricing.two, 
												three: objStandardPricing.three, 
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}}, 
								RAD: {ProductName: 'RADIANCE: The Experience of Light',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,  
												two: objStandardPricing.two, 
												three: objStandardPricing.three, 
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}}, 
						POC1: {ProductName: 'MOTHERHOOD by CHOICE, Not Chance',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						POC2: {ProductName: 'WHEN ABORTION WAS ILLEGAL',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						POC3: {ProductName: 'FROM DANGER to DIGNITY',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						POC4: {ProductName: 'The FRAGILE PROMISE of CHOICE',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						SOH: {ProductName: 'SEEDS of HOPE',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						WBW: {ProductName: 'WOMAN by WOMAN: New Hope for the Villages of India',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						WDTKLS: {ProductName: 'WHY DO THESE KIDS LOVE SCHOOL?',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						SA1: {ProductName: 'Stealing America: Vote by Vote',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						FIX: {ProductName: 'FIX-IT SHOPS: An Endangered Species',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						OS: {ProductName: 'OPEN SECRET: Versions of Rumi',
								PriceBreak: 'True',
								ShipBreak: 'True',
								ProductPrice: {	one: objStandardPricing.one,
												two: objStandardPricing.two,
												three: objStandardPricing.three,
												special: objStandardPricing.special,
												vhs: objStandardPricing.vhs}},
						MLR: {ProductName: 'DVD Gift Mailers, 1 Dozen',
								PriceBreak: 'False',
								ShipBreak: 'Special',
								ProductPrice: {	one: 4,
												two: 4,
												three: 4,
												special: 4}}};
