
	simpleCart.email = "info@madplant.sk";
	simpleCart.checkoutTo = Custom;
	simpleCart.merchantId = "SimpleC007";
	simpleCart.checkoutTo = GoogleCheckout;
//	simpleCart.currency = USD;
//	simpleCart.currency = GBP;
	simpleCart.currency = EUR;
//	simpleCart.taxRate  = 0.0;
	simpleCart.shippingFlatRate = 0.00;
	simpleCart.shippingQuantityRate = 0.00;
	CartItem.prototype.shipping = function(){
		if( Cart.total > 70 ){
return 0*1;
		} else {
return 7.80*1;
}
	};

/*	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 = [
 "Price",
 "decrement_noHeader","increment_noHeader",
 "Quantity",
 "Total",
 "remove_noHeader",
 "Name","Size_noHeader"
];
