var alert_msg = '';
 
/*
variants array:
	0 - array:
		0 - taxed price
		1 - quantity
		2 - variantid if variant have thumbnail
		3 - weight
		4 - original price (without taxes)
		5 - productcode
	1 - array: variant options as classid => optionid
	2 - array: taxes as taxid => tax amount
	3 - wholesale prices array:
		0 - quantity
		1 - next quantity
		2 - taxed price
		3 - taxes array: as taxid => tax amount
		4 - original price (without taxes)
*/
var variants = [];
variants[15350] = [[5295.00, 99999, new Image(), '2.50', 5295.00, "8335-MN93-BK"],{},{},[]];
variants[15350][1][96] = 632;
variants[15351] = [[5495.00, 99999, new Image(), '2.50', 5495.00, "8335-SR193-BK"],{},{},[]];
variants[15351][1][96] = 633;
variants[15352] = [[5595.00, 99999, new Image(), '2.00', 5595.00, "8335-193-24-BK"],{},{},[]];
variants[15352][1][96] = 634;
variants[15353] = [[5795.00, 99999, new Image(), '2.00', 5795.00, "8335-193-36-BK"],{},{},[]];
variants[15353][1][96] = 635;
variants[15354] = [[5895.00, 99999, new Image(), '2.00', 5895.00, "8335-MR193-BK"],{},{},[]];
variants[15354][1][96] = 636;
variants[15355] = [[5595.00, 99999, new Image(), '2.00', 5595.00, "8335-MN193-BK"],{},{},[]];
variants[15355][1][96] = 637;
 
/*
modifiers array: as clasid => array: as optionid => array:
	0 - price_modifier
	1 - modifier_type
	2 - taxes array: as taxid => tax amount
*/
var modifiers = [];
// names array: as classid => class name
var names = [];
names[96] = {class_name: "Probe", options: []};
names[96]['options'][632] = "MN93-BK Probe";
names[96]['options'][633] = "SR193-BK Probe (+ $200.00)";
names[96]['options'][634] = "24\" AmpFlex 193-24-BK Probe (+ $300.00)";
names[96]['options'][635] = "36\" AmpFlex 193-36-BK Probe (+ $500.00)";
names[96]['options'][636] = "MR193-BK  Probe (+ $600.00)";
names[96]['options'][637] = "MN193-BK Probe (+ $300.00)";
 
/*
taxes array: as taxid => array()
	0 - calculated tax value for default product price
	1 - tax name
	2 - tax type ($ or %)
	3 - tax value
*/
var taxes = [];
 
// exceptions array: as exctionid => array: as clasid => optionid
var exceptions = [];
 
/*
_product_wholesale array: as id => array:
	0 - quantity
	1 - next quantity
	2 - taxed price
	3 - taxes array: as taxid => tax amount
	4 - original price (without taxes)
*/
var product_wholesale = [];
var _product_wholesale = [];
 
var product_image = new Image();
product_image.src = "/cart/default_image.gif";
var exception_msg = "Sorry, this combination of product options is not available.";
var exception_msg_html = "Sorry, this combination of product options is not available.";
var txt_out_of_stock = "Out of stock";
var pconf_price = 0
var default_price = 5295.00;
var currency_symbol = "$";
var alter_currency_symbol = "";
var alter_currency_rate = 0.87;
var lbl_no_items_available = "No items available";
var txt_items_available = "{{items}} item(s) available";
var list_price = 0.00;
var price = 5295.00;
var orig_price = 5295.00;
var mq = 50;
var dynamic_save_money_enabled = false;
var is_unlimit = true;
 
var lbl_item = "Item";
var lbl_items = "Items";
var lbl_quantity = "Quantity";
var lbl_price = "Price";
var txt_note = "Note";
var lbl_including_tax = "including {{tax}}";
