	simpleCart.email = "george@thortechnologies.com.au";
	simpleCart.checkoutTo = PayPal;
//	simpleCart.merchantId = "118575326044237";
//	simpleCart.checkoutTo = GoogleCheckout;
	simpleCart.currency = AUD;
//	simpleCart.taxRate  = 0.1;
//	simpleCart.shippingFlatRate = 5.25;
//	simpleCart.shippingQuantityRate = 1.00;
/*	CartItem.prototype.shipping = function(){
		if( this.size ){
			switch( this.size.toLowerCase() ){
				case 'small':
					return this.quantity * 10.00;
				case 'medium':
					return this.quantity * 12.00;
				case 'large':
					return this.quantity * 15.00;
				case 'bull':
					return 45.00;
				default:
					return this.quantity * 5.00;
			}
		}
	};
*/
	
	simpleCart.cartHeaders = ["Name" ,  "Quantity", "Total", "remove_noHeader" ];
