
currentMenuItem = "";
menuItemNormal = "";

String.prototype.trim=function(){
    return this.replace(/^\s*|\s*$/g,'');
}

String.prototype.ltrim=function(){
    return this.replace(/^\s*/g,'');
}

String.prototype.rtrim=function(){
    return this.replace(/\s*$/g,'');
}

function NumbersOnly(e, optional)
{
	var key;
	var keychar;
	
	if (window.event)
		key = window.event.keyCode;
	
	else if (e)
		key = e.which;
	
	else
		return true;
	
	keychar = String.fromCharCode(key);
	
	// control keys
	if ((key==null) || (key==0) || (key==8) || (key==9) || (key==13) || (key==27))
		return true;
	
	else if (("0123456789").indexOf(keychar) > -1)
		return true;
	
	else if (optional && (optional).indexOf(keychar) > -1)
		return true;
	
	else
		return false;
}

function AlphaOnly(e, optional)
{
	var key;
	var keychar;
	
	if (window.event)
		key = window.event.keyCode;
	
	else if (e)
		key = e.which;
	
	else
		return true;
	
	keychar = String.fromCharCode(key);
	
	// control keys
	if ((key==null) || (key==0) || (key==8) || (key==9) || (key==13) || (key==27))
		return true;
	
	// numbers
	else if ((("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ").indexOf(keychar) > -1))
		return true;
	
	else if (optional && (optional).indexOf(keychar) > -1)
		return true;
		
	else
		return false;
}

var showFeatures = 0;
var currentSeries = new Array();

currentSeries[0] = new Array(45, "24-7", new Array(-1, 2));
currentSeries[1] = new Array(88, "2005 O'Neill CWC", new Array(-1, 6));
currentSeries[2] = new Array(56, "24-7", new Array(-1, 1, 3, 4, 7));
currentSeries[3] = new Array(52, "ASSAULT", new Array(-1, 3, 4));
currentSeries[4] = new Array(137, "AUTHENTIC", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[5] = new Array(140, "BACKPACKS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[6] = new Array(139, "BAGS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[7] = new Array(141, "BAHIA", new Array(-1, 1, 3, 4, 7));
currentSeries[8] = new Array(130, "BASIC TEES", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[9] = new Array(131, "BEANIES", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[10] = new Array(65, "BEANIES", new Array(-1, 2));
currentSeries[11] = new Array(113, "BELTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[12] = new Array(72, "BOARDSHORTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[13] = new Array(54, "BOOST", new Array(-1, 3, 4));
currentSeries[14] = new Array(39, "BOOST DRY", new Array(-1, 3, 4));
currentSeries[15] = new Array(23, "COLD", new Array(-1, 5));
currentSeries[16] = new Array(12, "COLD WATER BOOTS", new Array(-1, 1, 7));
currentSeries[17] = new Array(75, "COMP VESTS", new Array(-1, 3, 4));
currentSeries[18] = new Array(24, "COOL", new Array(-1, 5));
currentSeries[19] = new Array(105, "DENIM", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[20] = new Array(30, "DIVE BOOTS", new Array(-1, 5));
currentSeries[21] = new Array(29, "DIVE GLOVES", new Array(-1, 5));
currentSeries[22] = new Array(28, "DIVE HOODS", new Array(-1, 5));
currentSeries[23] = new Array(122, "DLUX", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[24] = new Array(99, "DRYSUITS", new Array(-1, 3, 4, 5));
currentSeries[25] = new Array(55, "EPIC", new Array(-1, 1));
currentSeries[26] = new Array(13, "EVO BOOTS", new Array(-1, 7));
currentSeries[27] = new Array(1, "EVOLUTION", new Array(-1, 7));
currentSeries[28] = new Array(100, "Explore", new Array(-1, 5));
currentSeries[29] = new Array(43, "EXPLORE", new Array(-1, 2));
currentSeries[30] = new Array(127, "FLANNELS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[31] = new Array(126, "FLEECE", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[32] = new Array(118, "FLIP FLOPS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[33] = new Array(38, "FLUID", new Array(-1, 3, 4));
currentSeries[34] = new Array(8, "FLX", new Array(-1, 1, 7));
currentSeries[35] = new Array(11, "FREAK", new Array(-1, 1, 7));
currentSeries[36] = new Array(44, "FREEDOM", new Array(-1, 2));
currentSeries[37] = new Array(22, "FRIGID", new Array(-1, 5));
currentSeries[38] = new Array(16, "FRIGID BOOTS", new Array(-1, 1, 7));
currentSeries[39] = new Array(5, "FRIGID HOODS", new Array(-1, 1, 7));
currentSeries[40] = new Array(14, "FSW", new Array(-1, 1, 7));
currentSeries[41] = new Array(19, "FUEL SERIES", new Array(-1, 6));
currentSeries[42] = new Array(15, "GBS", new Array(-1, 1, 7));
currentSeries[43] = new Array(143, "GIRLS FREEDOM", new Array(-1, 2));
currentSeries[44] = new Array(4, "GOORU", new Array(-1, 1, 3, 4, 7));
currentSeries[45] = new Array(149, "GOORU GBS", new Array(-1, 1, 3, 4));
currentSeries[46] = new Array(158, "HAILO", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[47] = new Array(3, "HAMMER", new Array(-1, 1, 3, 4, 7));
currentSeries[48] = new Array(111, "HATS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[49] = new Array(146, "HEADWEAR", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[50] = new Array(46, "HEAT", new Array(-1, 1, 3, 4));
currentSeries[51] = new Array(35, "HYBRID", new Array(-1, 3, 4));
currentSeries[52] = new Array(136, "IMAGE LAB", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[53] = new Array(68, "INFRARED", new Array(-1, 1, 3, 4, 5, 6, 7));
currentSeries[54] = new Array(20, "INFRARED SERIES", new Array(-1, 6));
currentSeries[55] = new Array(104, "Isotherm", new Array(-1, 5));
currentSeries[56] = new Array(101, "J-Type", new Array(-1, 5));
currentSeries[57] = new Array(125, "JACKETS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[58] = new Array(114, "KNITS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[59] = new Array(92, "LEATHERS", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentSeries[60] = new Array(161, "LUGGAGE", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[61] = new Array(50, "MAX", new Array(-1, 7));
currentSeries[62] = new Array(51, "MENTAL", new Array(-1, 3, 4));
currentSeries[63] = new Array(117, "MISC BOOTS", new Array(-1, 1, 5, 7));
currentSeries[64] = new Array(124, "MOD", new Array(-1, 1));
currentSeries[65] = new Array(116, "MUTANT", new Array(-1, 1, 7));
currentSeries[66] = new Array(36, "NYLON", new Array(-1, 3, 4));
currentSeries[67] = new Array(142, "O'RIGINAL", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[68] = new Array(7, "O'ZONE", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[69] = new Array(89, "O'ZONE TECH", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[70] = new Array(37, "OUTLAW", new Array(-1, 3, 4));
currentSeries[71] = new Array(109, "PANTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[72] = new Array(144, "PLUGGED IN", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[73] = new Array(70, "PSYCHO GLOVES", new Array(-1, 1, 3, 4, 5, 6, 7));
currentSeries[74] = new Array(63, "PSYCHO I", new Array(-1, 1, 3, 4));
currentSeries[75] = new Array(40, "PSYCHO II", new Array(-1, 1, 3, 4));
currentSeries[76] = new Array(160, "PSYCHOFREAK", new Array(-1, 1, 3, 4));
currentSeries[77] = new Array(31, "REACTOR", new Array(-1, 1, 3, 4, 5));
currentSeries[78] = new Array(119, "SANDALS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[79] = new Array(138, "SCHOLAR", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[80] = new Array(97, "Sector", new Array(-1, 5));
currentSeries[81] = new Array(102, "Sector", new Array(-1, 5));
currentSeries[82] = new Array(135, "SEPARATOR", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[83] = new Array(159, "SHOES", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[84] = new Array(108, "SHORTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[85] = new Array(157, "SIGNATURE", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[86] = new Array(73, "SIREN", new Array(-1, 3, 4));
currentSeries[87] = new Array(33, "SIREN VESTS", new Array(-1, 3, 4));
currentSeries[88] = new Array(17, "SKINS", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[89] = new Array(107, "SKIRTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[90] = new Array(133, "SLEEPWEAR", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[91] = new Array(132, "SLIPPERS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[92] = new Array(9, "SLX GLOVES", new Array(-1, 1, 7));
currentSeries[93] = new Array(21, "SPORT CAPS", new Array(-1, 6));
currentSeries[94] = new Array(10, "SUPERFREAK", new Array(-1, 1, 7));
currentSeries[95] = new Array(152, "SUPERLIGHT", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[96] = new Array(18, "SUPERSKINS", new Array(-1, 1, 3, 4, 7));
currentSeries[97] = new Array(147, "SURF HOODS", new Array(-1, 1));
currentSeries[98] = new Array(128, "SWEATERS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[99] = new Array(67, "SWEATSHIRTS", new Array(-1, 2));
currentSeries[100] = new Array(103, "System II", new Array(-1, 5));
currentSeries[101] = new Array(42, "TEAM ISSUE", new Array(-1, 2));
currentSeries[102] = new Array(64, "TECH FLEECE", new Array(-1, 2));
currentSeries[103] = new Array(66, "TEES", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[104] = new Array(79, "TEMPERATE", new Array(-1, 5));
currentSeries[105] = new Array(6, "TEMPERATE HOODS", new Array(-1, 1, 7));
currentSeries[106] = new Array(32, "THE LAW", new Array(-1, 3, 4));
currentSeries[107] = new Array(2, "THERMO", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[108] = new Array(49, "THERMO X", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[109] = new Array(26, "THINSKINS", new Array(-1, 1, 3, 4, 5));
currentSeries[110] = new Array(90, "TODDLER", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[111] = new Array(112, "TOWELS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[112] = new Array(134, "Transit", new Array(-1, 2));
currentSeries[113] = new Array(145, "TRAVEL", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[114] = new Array(25, "TROPICAL", new Array(-1, 5));
currentSeries[115] = new Array(154, "TROPICAL BOOTS", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[116] = new Array(74, "USCG VESTS", new Array(-1, 3, 4));
currentSeries[117] = new Array(53, "VAPOR", new Array(-1, 3, 4));
currentSeries[118] = new Array(27, "VESTS", new Array(-1, 5));
currentSeries[119] = new Array(156, "WALKSHORTS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[120] = new Array(120, "WEDGES", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[121] = new Array(82, "WET TECH", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[122] = new Array(98, "WETSUITS", new Array(-1, 5));
currentSeries[123] = new Array(110, "WOVENS", new Array(-1, 1, 2, 3, 4, 5, 7));
currentSeries[124] = new Array(151, "YOUTH UV AND RASH PROTECTION", new Array(-1, 1, 3, 4, 5, 7));
currentSeries[125] = new Array(93, "YOUTH VESTS", new Array(-1, 3, 4));

var currentTypes = new Array();

currentTypes[0] = new Array(32, "Accessories", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[1] = new Array(26, "Active", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[2] = new Array(36, "Bags", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[3] = new Array(27, "Boardshorts", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[4] = new Array(7, "Boots", new Array(-1, 1, 7));
currentTypes[5] = new Array(24, "Bottoms", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[6] = new Array(14, "Comp & Training PFDs", new Array(-1, 3, 4));
currentTypes[7] = new Array(28, "Denim", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[8] = new Array(25, "Dresses", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[9] = new Array(15, "Dry Suits", new Array(-1, 3, 4));
currentTypes[10] = new Array(22, "Footwear", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[11] = new Array(20, "Full Suits", new Array(-1, 1, 3, 4, 5));
currentTypes[12] = new Array(52, "Full Suits: Cold - Temperate", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[13] = new Array(51, "Full Suits: Frigid - Cold", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[14] = new Array(54, "Full Suits: Temperate - Warm", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[15] = new Array(47, "Gear Accessories", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[16] = new Array(49, "Girls Fullsuits", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[17] = new Array(5, "Gloves", new Array(-1, 1, 7));
currentTypes[18] = new Array(4, "Hoods", new Array(-1, 1, 7));
currentTypes[19] = new Array(11, "Hoods, Gloves, & Boots", new Array(-1, 5));
currentTypes[20] = new Array(41, "Jackets & Fleece", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[21] = new Array(35, "Knits & Wovens", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[22] = new Array(18, "Layering", new Array(-1, 2));
currentTypes[23] = new Array(10, "Layers", new Array(-1, 5));
currentTypes[24] = new Array(3, "Neoprene Tops & Bottoms", new Array(-1, 1, 3, 4, 7));
currentTypes[25] = new Array(45, "Pants", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[26] = new Array(17, "Pants", new Array(-1, 2));
currentTypes[27] = new Array(8, "Rash & U.V. Guards", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[28] = new Array(30, "Siren", new Array(-1, 3, 4));
currentTypes[29] = new Array(48, "Snow Layers", new Array(-1, 2));
currentTypes[30] = new Array(46, "SnowJacketsandPants", new Array(-1, 2));
currentTypes[31] = new Array(12, "Spring Suits", new Array(-1, 1, 3, 4, 5));
currentTypes[32] = new Array(44, "Swimwear", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[33] = new Array(55, "technical shorts", new Array(-1, 1, 3, 4));
currentTypes[34] = new Array(33, "Tees", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[35] = new Array(2, "Thermal Layering", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[36] = new Array(23, "Tops", new Array(-1, 1, 2, 3, 4, 5, 6, 7));
currentTypes[37] = new Array(43, "Tropical Wetsuits", new Array(-1, 5));
currentTypes[38] = new Array(16, "Urban Jackets", new Array(-1, 2));
currentTypes[39] = new Array(31, "VESTS", new Array(-1, 3, 4));
currentTypes[40] = new Array(34, "Walkshorts", new Array(-1, 1, 2, 3, 4, 5, 7));
currentTypes[41] = new Array(1, "Wetsuits", new Array(-1, 6, 7));
currentTypes[42] = new Array(40, "Youth Rash & U.V. Guards", new Array(-1, 1, 3, 4, 5, 7));
currentTypes[43] = new Array(53, "Youth Wet Suits", new Array(-1, 1, 3, 4, 5, 7));

var currentProducts = new Array();

currentProducts[0] = new Array(1081, "HOODIE - FLEECE HOODIE", 134, new Array(-1, 18));
currentProducts[1] = new Array(2059, "GIRLS COULEE JACKET - GIRLS COULEE JACKET, INSULATED", 143, new Array(-1, 46));
currentProducts[2] = new Array(2060, "GIRLS LAILA JACKET - GIRLS LAILA JACKET, INSULATED", 143, new Array(-1, 46));
currentProducts[3] = new Array(2061, "GIRLS MIA - GIRLS MIA JACKET INSULATED", 143, new Array(-1, 46));
currentProducts[4] = new Array(2062, "GIRLS BELLA PANT - GIRLS'  BELLA PANT, INSULATED", 143, new Array(-1, 46));
currentProducts[5] = new Array(2063, "PRINT JACKET - MIDLAYER PRINT JACKET", 134, new Array(-1, 48));
currentProducts[6] = new Array(35, "0.5mm Thinskins - 0.5MM THINSKINS HOOD", 5, new Array(-1, 4));
currentProducts[7] = new Array(38, "1.5MM DL - 1.5MM PSYCHO DL GLOVE", 70, new Array(-1, 5));
currentProducts[8] = new Array(34, "1.5mm Gooru - 1MM GOORU HOOD", 6, new Array(-1, 4));
currentProducts[9] = new Array(460, "05 CWC Hoody - 2005 O'Neill Cold Water Classic Hooded Sweatshirt", 88, new Array(-1, 0));
currentProducts[10] = new Array(461, "05 CWC Mens T - 2005 O'Neill Cold Water Classic Mens T-shirt", 88, new Array(-1, 0));
currentProducts[11] = new Array(463, "05 CWC Trucker Hat - 2005 O'Neill Cold Water Classic Trucker Hat", 88, new Array(-1, 0));
currentProducts[12] = new Array(462, "05 CWC Womens T - 2005 O'Neill Cold Water Classic Womens T-shirt", 88, new Array(-1, 0));
currentProducts[13] = new Array(264, "HOODIE - 24/7 HOODIE", 56, new Array(-1, 8));
currentProducts[14] = new Array(87, "S/S CREW - 24/7 S/S CREW", 56, new Array(-1, 8));
currentProducts[15] = new Array(86, "SLEEVELESS CREW - 24/7 SLEEVELESS CREW", 56, new Array(-1, 8));
currentProducts[16] = new Array(2467, "29 Palms - 29 Palms", 159, new Array(-1, 22));
currentProducts[17] = new Array(36, "2mm Sport Cap - 2MM SPORT CAP", 5, new Array(-1, 4));
currentProducts[18] = new Array(387, "Explore - 3000X S/S SPRING", 100, new Array(-1, 12));
currentProducts[19] = new Array(32, "3mm - 3MM COLDWATER HOOD", 5, new Array(-1, 4));
currentProducts[20] = new Array(732, "3MM - 3MM EXPLORE FULL", 100, new Array(-1, 20));
currentProducts[21] = new Array(1201, "Flatloc Cap - 3MM FLATLOC CAP", 28, new Array(-1, 11));
currentProducts[22] = new Array(379, "3MM - 3MM J-TYPE 2XFSW", 101, new Array(-1, 20));
currentProducts[23] = new Array(37, "3MM DL - 3MM PSYCHO DL GLOVE", 70, new Array(-1, 5));
currentProducts[24] = new Array(389, "3MM - 3MM SECTOR FSW FULL", 97, new Array(-1, 20));
currentProducts[25] = new Array(40, "3MM FLX - 3MM SL GLOVE", 8, new Array(-1, 5));
currentProducts[26] = new Array(33, "3mm Squid Lid - 3MM SQUID LID", 5, new Array(-1, 4));
currentProducts[27] = new Array(390, "3MM - 3MM SYSTEM JOHN & JKT GBS", 103, new Array(-1, 20));
currentProducts[28] = new Array(145, "Tropical - 3MM TROPICAL DIVE BOOT", 30, new Array(-1, 11));
currentProducts[29] = new Array(139, "Hooded Vest - 3MM VEST W/HOOD", 27, new Array(-1, 2, 11));
currentProducts[30] = new Array(146, "5mm zippered - 5MM BOOT W/ZIPPER", 30, new Array(-1, 11));
currentProducts[31] = new Array(150, "5mm - 5MM FLEXLOC GLOVES", 29, new Array(-1, 11));
currentProducts[32] = new Array(408, "LOBSTER GLOVE - 5MM LOBSTER SL GLOVE", 70, new Array(-1, 5));
currentProducts[33] = new Array(729, "5MM - 5MM SECTOR FSW FULL", 97, new Array(-1, 20));
currentProducts[34] = new Array(42, "5MM SL - 5MM SL GLOVE", 70, new Array(-1, 5));
currentProducts[35] = new Array(43, "5MM MITTEN - 5MM SL MITTEN", 70, new Array(-1, 5));
currentProducts[36] = new Array(138, "5mm Vest - 5MM Vest", 27, new Array(-1, 2));
currentProducts[37] = new Array(151, "Hooded Vest - 5MM VEST W/HOOD", 27, new Array(-1, 2, 11));
currentProducts[38] = new Array(860, "7MM Dry - 7000X DRYSUIT FSW", 99, new Array(-1, 20));
currentProducts[39] = new Array(374, "7MM - 7000X DRYSUIT FSW", 99, new Array(-1, 0));
currentProducts[40] = new Array(147, "7mm Zip - 7MM BOOT W/ZIPPER", 30, new Array(-1, 11));
currentProducts[41] = new Array(857, "7MM - 7MM J-TYPE 2XFSW W/HOOD", 101, new Array(-1, 20));
currentProducts[42] = new Array(375, "7000X - 7MM J-TYPE 2XFSW W/HOOD", 101, new Array(-1, 0));
currentProducts[43] = new Array(376, "Sector - 7MM SECTOR FSW FULL", 97, new Array(-1, 0));
currentProducts[44] = new Array(854, "7MM - 7MM SECTOR FSW FULL", 97, new Array(-1, 20));
currentProducts[45] = new Array(855, "7MM w/ Hood - 7MM SECTOR FSW FULL W/HOOD", 97, new Array(-1, 20));
currentProducts[46] = new Array(377, "Sector - 7MM SECTOR FSW FULL W/HOOD", 97, new Array(-1, 0));
currentProducts[47] = new Array(856, "7MM - 7MM SYSTEM JOHN&JKT GBS W/HOOD", 103, new Array(-1, 20));
currentProducts[48] = new Array(378, "System - 7MM SYSTEM JOHN&JKT GBS W/HOOD", 103, new Array(-1, 0));
currentProducts[49] = new Array(634, "808 - 808", 119, new Array(-1, 22));
currentProducts[50] = new Array(2703, "Aberdeen - Aberdeen", 110, new Array(-1, 35));
currentProducts[51] = new Array(2757, "Ali - Ali", 126, new Array(-1, 23));
currentProducts[52] = new Array(2722, "All That Glitters - All That Glitters", 161, new Array(-1, 32));
currentProducts[53] = new Array(2704, "Alpha - Alpha", 110, new Array(-1, 35));
currentProducts[54] = new Array(562, "Alpine - Alpine", 0, new Array(-1, 16));
currentProducts[55] = new Array(2658, "Ambush - Ambush", 139, new Array(-1, 32));
currentProducts[56] = new Array(240, "AMS - AMS Jacket", 0, new Array(-1, 16));
currentProducts[57] = new Array(2750, "Anchorage - Anchorage", 108, new Array(-1, 24));
currentProducts[58] = new Array(2801, "Argonne - Argonne", 131, new Array(-1, 32));
currentProducts[59] = new Array(325, "safsafd - asasdf", 55, new Array(-1, 27));
currentProducts[60] = new Array(323, "asfdsa - asdfsadf saf", 72, new Array(-1, 32));
currentProducts[61] = new Array(129, "Hybrid Dry - ASSAULT HYBRID DRYSUIT", 99, new Array(-1, 0));
currentProducts[62] = new Array(229, "Assault - Assault Jacket", 0, new Array(-1, 46));
currentProducts[63] = new Array(107, "ASSAULT - ASSAULT L.S. USCG VEST", 74, new Array(-1, 31));
currentProducts[64] = new Array(265, "Assault Spring - ASSAULT SPRING", 52, new Array(-1, 12));
currentProducts[65] = new Array(2022, "AUDIO SWEATER - AUDIO SWEATER", 43, new Array(-1, 46));
currentProducts[66] = new Array(2685, "Baclava - Baclava", 0, new Array(-1, 33));
currentProducts[67] = new Array(593, "L/S Crew - Bahia L/S Crew", 141, new Array(-1, 3));
currentProducts[68] = new Array(2440, "S/S Spring - Bahia Short sleeve Spring", 141, new Array(-1, 12));
currentProducts[69] = new Array(2442, "Short Spring - Bahia Short Spring", 141, new Array(-1, 12));
currentProducts[70] = new Array(2441, "Sport Short - Bahia Sport Short", 141, new Array(-1, 3));
currentProducts[71] = new Array(2439, "Superfreak - Bahia Superfreak", 141, new Array(-1, 3));
currentProducts[72] = new Array(2713, "Bainbridge - Bainbridge", 0, new Array(-1, 34));
currentProducts[73] = new Array(2714, "Bandit - Bandit", 0, new Array(-1, 34));
currentProducts[74] = new Array(2129, "Banks - Banks", 92, new Array(-1, 22));
currentProducts[75] = new Array(2468, "Basil - Basil", 119, new Array(-1, 22));
currentProducts[76] = new Array(2719, "Beach Bum - Beach Bum", 161, new Array(-1, 32));
currentProducts[77] = new Array(2793, "Beacons - Beacons", 159, new Array(-1, 22));
currentProducts[78] = new Array(2754, "Beaver Creek - Beaver Creek", 126, new Array(-1, 23));
currentProducts[79] = new Array(2789, "Beddy-bye - Beddy-bye", 132, new Array(-1, 22));
currentProducts[80] = new Array(239, "Belay Softshell - Belay Softshell Jacket", 0, new Array(-1, 16));
currentProducts[81] = new Array(2742, "Bella - Bella", 105, new Array(-1, 24));
currentProducts[82] = new Array(2698, "Belmont - Belmont", 114, new Array(-1, 35));
currentProducts[83] = new Array(2797, "Benjamin Shlipper - Benjamin Shlipper", 159, new Array(-1, 22));
currentProducts[84] = new Array(235, "Beta - Beta Pant", 0, new Array(-1, 17));
currentProducts[85] = new Array(2721, "Betsey - Betsey", 161, new Array(-1, 32));
currentProducts[86] = new Array(2770, "Big Bear - Big Bear", 114, new Array(-1, 23));
currentProducts[87] = new Array(2741, "Big Love - Big Love", 139, new Array(-1, 32));
currentProducts[88] = new Array(2776, "Big Sky - Big Sky", 128, new Array(-1, 23));
currentProducts[89] = new Array(2521, "BIPOLAR - BIPOLAR JACKET", 44, new Array(-1, 46));
currentProducts[90] = new Array(2775, "Bjork - Bjork", 114, new Array(-1, 23));
currentProducts[91] = new Array(278, "Blkd - Black Diamond", 0, new Array(-1, 26));
currentProducts[92] = new Array(2514, "BLAZE JACKET - BLAZE JACKET", 43, new Array(-1, 46));
currentProducts[93] = new Array(371, "Blizzard - Blizzard", 0, new Array(-1, 16));
currentProducts[94] = new Array(2745, "Blue Bell - Blue Bell", 105, new Array(-1, 24));
currentProducts[95] = new Array(980, "Boiler Down Jacket - Boiler Down Jacket", 0, new Array(-1, 16));
currentProducts[96] = new Array(2749, "Bonaire - Bonaire", 72, new Array(-1, 24));
currentProducts[97] = new Array(2688, "Bone Plaid - Bone Plaid", 0, new Array(-1, 33));
currentProducts[98] = new Array(2429, "Boost - Boost Comp Vest", 75, new Array(-1, 31));
currentProducts[99] = new Array(119, "Boost - BOOST DRYSUIT", 99, new Array(-1, 0));
currentProducts[100] = new Array(966, "Boxter Jacket - Boxter Jacket", 0, new Array(-1, 46));
currentProducts[101] = new Array(965, "Boxter Jacket - Boxter Jacket", 0, new Array(-1, 46));
currentProducts[102] = new Array(2035, "BOYS CLUTCH JACKET - BOYS CLUTCH JACKET, INSULATED", 0, new Array(-1, 46));
currentProducts[103] = new Array(2034, "BOYS LINES JACKET - BOYS LINES JACKET, INSULATED", 0, new Array(-1, 46));
currentProducts[104] = new Array(2036, "BOYS JACKET - BOYS TOASTEE DOWN JACKET", 0, new Array(-1, 46));
currentProducts[105] = new Array(2037, "BOYS PANT - BOYS' TRAVERSE FONT PRINT PANT, INSULATED", 0, new Array(-1, 46));
currentProducts[106] = new Array(954, "Bradley - Bradley Canvas Jacket", 0, new Array(-1, 46));
currentProducts[107] = new Array(2675, "Breaker - Breaker", 125, new Array(-1, 41));
currentProducts[108] = new Array(2680, "Brecon - Brecon", 128, new Array(-1, 35));
currentProducts[109] = new Array(2052, "BREVA JACKET - BREVA CELL JKT LT INSULATED", 44, new Array(-1, 46));
currentProducts[110] = new Array(2705, "Bucknell - Bucknell", 110, new Array(-1, 35));
currentProducts[111] = new Array(2800, "Bunker 2 - Bunker 2", 159, new Array(-1, 22));
currentProducts[112] = new Array(2663, "Byerly Freak - Byerly Freak", 157, new Array(-1, 27));
currentProducts[113] = new Array(563, "Cabin - Cabin Fever", 0, new Array(-1, 16));
currentProducts[114] = new Array(2764, "Cali - Cali", 125, new Array(-1, 23));
currentProducts[115] = new Array(474, "Calibrate - Calibrate", 0, new Array(-1, 16));
currentProducts[116] = new Array(623, "Captain - Captain Jack", 92, new Array(-1, 22));
currentProducts[117] = new Array(2790, "Catnap - Catnap", 132, new Array(-1, 22));
currentProducts[118] = new Array(2689, "Chance - Chance", 0, new Array(-1, 33));
currentProducts[119] = new Array(2045, "CHARGE JACKET - CHARGE JACKET, INSULATED", 43, new Array(-1, 46));
currentProducts[120] = new Array(469, "Chase - Chase", 0, new Array(-1, 17));
currentProducts[121] = new Array(270, "Checkmate - Checkmate", 75, new Array(-1, 31));
currentProducts[122] = new Array(2065, "FLEECE HOODIE - CHENILLE FLEECE HOODIE", 134, new Array(-1, 48));
currentProducts[123] = new Array(284, "Chieftan - Chieftan", 0, new Array(-1, 24));
currentProducts[124] = new Array(638, "Child USCG - CHILD NYLON USCG VEST", 93, new Array(-1, 31));
currentProducts[125] = new Array(640, "Child USCG - CHILD USCG VEST", 93, new Array(-1, 31));
currentProducts[126] = new Array(2055, "CHILL PANT - CHILL PANT, INSULATED", 44, new Array(-1, 46));
currentProducts[127] = new Array(564, "Chiller - Chiller", 0, new Array(-1, 16));
currentProducts[128] = new Array(236, "Cirque - Cirque Pant", 42, new Array(-1, 17));
currentProducts[129] = new Array(2808, "Clark - Clark", 111, new Array(-1, 32));
currentProducts[130] = new Array(2669, "Clean & Mean Patterns - Clean & Mean Patterns", 72, new Array(-1, 27));
currentProducts[131] = new Array(2792, "Cold Front - Cold Front", 159, new Array(-1, 22));
currentProducts[132] = new Array(2700, "Collins - Collins", 114, new Array(-1, 35));
currentProducts[133] = new Array(2778, "Colorado - Colorado", 128, new Array(-1, 23));
currentProducts[134] = new Array(2706, "Colossus - Colossus", 110, new Array(-1, 35));
currentProducts[135] = new Array(204, "Concept - Concept Jacket", 0, new Array(-1, 16));
currentProducts[136] = new Array(203, "Concept - Concept Vest", 0, new Array(-1, 16));
currentProducts[137] = new Array(2443, "Connection - Connection", 0, new Array(-1, 44));
currentProducts[138] = new Array(2670, "Contrast - Contrast", 126, new Array(-1, 41));
currentProducts[139] = new Array(2041, "Convoy - Convoy Soft Shell", 134, new Array(-1, 46));
currentProducts[140] = new Array(2444, "Core Solid - Core Solid", 0, new Array(-1, 44));
currentProducts[141] = new Array(2804, "Coronado - Coronado", 131, new Array(-1, 32));
currentProducts[142] = new Array(2657, "Cortes - Cortes", 139, new Array(-1, 32));
currentProducts[143] = new Array(2051, "COULEE RIBBON JACKET - COULEE RIBBON JACKET INSULATED", 44, new Array(-1, 46));
currentProducts[144] = new Array(2699, "Crane - Crane", 114, new Array(-1, 35));
currentProducts[145] = new Array(2697, "Creator - Creator", 0, new Array(-1, 33));
currentProducts[146] = new Array(455, "4/3 Psycho II - Custom Suit", 0, new Array(-1, 0));
currentProducts[147] = new Array(454, "3/2 Psycho II - Custom Suit", 0, new Array(-1, 0));
currentProducts[148] = new Array(457, "4/3 Psycho II - Custom Suit", 0, new Array(-1, 0));
currentProducts[149] = new Array(456, "3/2 Psycho II - Custom Suit", 0, new Array(-1, 0));
currentProducts[150] = new Array(2806, "Cypress - Cypress", 131, new Array(-1, 32));
currentProducts[151] = new Array(2505, "D-Lux 4/3 - D-Lux 4/3 3Q Zip FSW", 122, new Array(-1, 51));
currentProducts[152] = new Array(2747, "Dahlia - Dahlia", 72, new Array(-1, 24));
currentProducts[153] = new Array(2746, "Dahlia - Dahlia", 72, new Array(-1, 24));
currentProducts[154] = new Array(2655, "Dark Angel - Dark Angel", 139, new Array(-1, 32));
currentProducts[155] = new Array(2810, "Davis - Davis", 111, new Array(-1, 32));
currentProducts[156] = new Array(201, "Dax - Dax Jacket", 0, new Array(-1, 16));
currentProducts[157] = new Array(2768, "Daybreak - Daybreak", 125, new Array(-1, 23));
currentProducts[158] = new Array(2673, "Deep Blue - Deep Blue", 126, new Array(-1, 41));
currentProducts[159] = new Array(2672, "Delta - Delta", 126, new Array(-1, 41));
currentProducts[160] = new Array(2662, "Denver - Denver", 125, new Array(-1, 23));
currentProducts[161] = new Array(565, "Depot - Depot", 0, new Array(-1, 16));
currentProducts[162] = new Array(2687, "Detonation - Detonation", 0, new Array(-1, 33));
currentProducts[163] = new Array(364, "Dexter - Dexter", 0, new Array(-1, 16));
currentProducts[164] = new Array(324, "dfg - dfgsdgsdf", 39, new Array(-1, 26));
currentProducts[165] = new Array(205, "Digital - Digital Jacket", 0, new Array(-1, 16));
currentProducts[166] = new Array(2674, "Distance - Distance", 126, new Array(-1, 41));
currentProducts[167] = new Array(734, "Bib Hood - DIVE BIB HOOD", 28, new Array(-1, 11));
currentProducts[168] = new Array(148, "Dry Boot - DIVE DRY BOOT", 30, new Array(-1, 11));
currentProducts[169] = new Array(2506, "DLux 6/5 - DLux 6/5 FSW W/ Hood", 122, new Array(-1, 51));
currentProducts[170] = new Array(2732, "Dodi - Dodi", 146, new Array(-1, 32));
currentProducts[171] = new Array(2465, "Doheny - Doheny", 159, new Array(-1, 22));
currentProducts[172] = new Array(2618, "Down N Out - Down N Out", 125, new Array(-1, 41));
currentProducts[173] = new Array(2064, "DOWN VEST - DOWN PRINT VEST", 134, new Array(-1, 48));
currentProducts[174] = new Array(2691, "Dreary - Dreary", 0, new Array(-1, 33));
currentProducts[175] = new Array(2738, "Dress Code - Dress Code", 139, new Array(-1, 32));
currentProducts[176] = new Array(2654, "Drifter - Drifter", 139, new Array(-1, 32));
currentProducts[177] = new Array(2209, "Dusk - Dusk", 113, new Array(-1, 32));
currentProducts[178] = new Array(2684, "Eagle - Eagle", 128, new Array(-1, 35));
currentProducts[179] = new Array(2690, "Eagles - Eagles", 0, new Array(-1, 33));
currentProducts[180] = new Array(566, "Emmylou - Emmylou", 0, new Array(-1, 16));
currentProducts[181] = new Array(222, "EPIC Denim Jean - EPIC Denim Jean", 0, new Array(-1, 46));
currentProducts[182] = new Array(4, "3/2 - EPIC-2 3/2 CT", 55, new Array(-1, 20));
currentProducts[183] = new Array(3, "4/3 - EPIC-2 4/3 CT", 55, new Array(-1, 20));
currentProducts[184] = new Array(967, "ETCH JACKET - ETCH JACKET", 0, new Array(-1, 46));
currentProducts[185] = new Array(2565, "Everyday - Everyday", 105, new Array(-1, 24));
currentProducts[186] = new Array(170, "EVO 5/4/3 - EVO ZEN ZIP 5/4/3 FSW #2068", 1, new Array(-1, 1));
currentProducts[187] = new Array(169, "Convertible - EVOLUTION 3/2 CONV FSW #2067", 1, new Array(-1, 1));
currentProducts[188] = new Array(739, "1 mm - EXPLORE 1MM GLOVE", 29, new Array(-1, 11));
currentProducts[189] = new Array(2765, "Fairhaven - Fairhaven", 125, new Array(-1, 23));
currentProducts[190] = new Array(475, "Fastlane - Fastlane", 0, new Array(-1, 16));
currentProducts[191] = new Array(1197, "Fin Socks - FIN SOCK (PAIR)", 12, new Array(-1, 7));
currentProducts[192] = new Array(103, "2mm Sock - FIN SOCK (PAIR)", 12, new Array(-1, 0));
currentProducts[193] = new Array(567, "First - First Class", 0, new Array(-1, 16));
currentProducts[194] = new Array(2435, "Flare - Flare USCG", 74, new Array(-1, 31));
currentProducts[195] = new Array(2042, "FLEECE PANT - FLEECE PANT", 134, new Array(-1, 46));
currentProducts[196] = new Array(2069, "FLEECE PANT - FLEECE PANT", 134, new Array(-1, 48));
currentProducts[197] = new Array(141, "DryHood - FLEXLOC DRY HOOD 5MM", 28, new Array(-1, 11));
currentProducts[198] = new Array(964, "Flip JAcket - Flip Jacket", 0, new Array(-1, 46));
currentProducts[199] = new Array(2445, "Flower Power - Flower Power", 0, new Array(-1, 44));
currentProducts[200] = new Array(118, "FSW 3/2mm - Fluid Drysuit FSW 3/2MM", 99, new Array(-1, 0));
currentProducts[201] = new Array(2046, "FLUX JACKET - FLUX INSULATED JACKET", 43, new Array(-1, 46));
currentProducts[202] = new Array(172, "CONVERTIBLE - FLX 3/2 CONV CT #2071", 8, new Array(-1, 1));
currentProducts[203] = new Array(173, "FLX 5/4/3 - FLX 5/4/3 CT #2072", 8, new Array(-1, 1));
currentProducts[204] = new Array(39, "2MM FLX - FLX GLOVE 2 MM", 8, new Array(-1, 5));
currentProducts[205] = new Array(476, "Folder - Folder", 0, new Array(-1, 16));
currentProducts[206] = new Array(477, "Formula - Formula", 0, new Array(-1, 16));
currentProducts[207] = new Array(47, "3/2mm ST - FREAK SNEAK 3/2MM ST BOOT", 12, new Array(-1, 7));
currentProducts[208] = new Array(2170, "Free Bird - Free Bird", 119, new Array(-1, 22));
currentProducts[209] = new Array(2446, "Free Love - Free Love", 0, new Array(-1, 44));
currentProducts[210] = new Array(2785, "Free Spirit - Free Spirit", 66, new Array(-1, 23));
currentProducts[211] = new Array(2811, "Fuelled 3 - Fuelled 3", 111, new Array(-1, 32));
currentProducts[212] = new Array(1145, "Fuji - Fuji", 118, new Array(-1, 22));
currentProducts[213] = new Array(478, "Fuse - Fuse", 0, new Array(-1, 16));
currentProducts[214] = new Array(979, "Garbo Jacket - Garbo Jacket", 0, new Array(-1, 16));
currentProducts[215] = new Array(2432, "Gem - Gem Comp Vest", 75, new Array(-1, 31));
currentProducts[216] = new Array(2077, "GIRLS 3/2 - GIRLS EPIC-2 3/2 CT", 55, new Array(-1, 54));
currentProducts[217] = new Array(599, "Girls Hammer Spring - GIRLS HAMMER S/S SPRING", 3, new Array(-1, 0));
currentProducts[218] = new Array(600, "SKINS L/S CREW - GIRLS SKINS L/S CREW", 17, new Array(-1, 40));
currentProducts[219] = new Array(601, "S/S CREW - GIRLS SKINS S/S CREW", 17, new Array(-1, 40));
currentProducts[220] = new Array(2425, "S/S RASH TEE - GIRLS SKINS S/S RASH TEE", 17, new Array(-1, 40));
currentProducts[221] = new Array(2736, "Globe Trotter - Globe Trotter", 139, new Array(-1, 32));
currentProducts[222] = new Array(2047, "GOLD COAST PANT - GOLD COAST DENIM PANT", 43, new Array(-1, 46));
currentProducts[223] = new Array(2433, "Gooru - Gooru Comp Vest", 75, new Array(-1, 31));
currentProducts[224] = new Array(587, "GBS L/S - GOORU GBS 2MM L/S SPRING", 149, new Array(-1, 12));
currentProducts[225] = new Array(179, "GBS S/S - GOORU GBS 2MM S/S FULL", 4, new Array(-1, 20));
currentProducts[226] = new Array(241, "GBS - GOORU GBS 2MM S/S SPRING", 149, new Array(-1, 12));
currentProducts[227] = new Array(255, "GBS FULL - GOORU GBS 3/2MM FULL", 4, new Array(-1, 20));
currentProducts[228] = new Array(586, "Glide L/S - GOORU GLIDE L/S CREW", 4, new Array(-1, 3));
currentProducts[229] = new Array(76, "GLIDE L/S - GOORU GLIDE L/S CREW", 4, new Array(-1, 3));
currentProducts[230] = new Array(78, "1.5 L/S - GOORU L/S CREW", 4, new Array(-1, 3));
currentProducts[231] = new Array(1173, "Gooru L/S - GOORU L/S SPRING", 4, new Array(-1, 12));
currentProducts[232] = new Array(622, "Gooru - GOORU PADDED COMP VEST", 75, new Array(-1, 31));
currentProducts[233] = new Array(23, "Padded John - GOORU PADDED SHORT JOHN 1.5MM", 4, new Array(-1, 12, 14));
currentProducts[234] = new Array(75, "1.5 S/S - GOORU S/S CREW", 4, new Array(-1, 3));
currentProducts[235] = new Array(15, "Gooru Spring - GOORU S/S SPRING", 4, new Array(-1, 12));
currentProducts[236] = new Array(77, "Vest - GOORU VEST", 4, new Array(-1, 3));
currentProducts[237] = new Array(1078, "Tech-T - Grid Iron Tech- T", 0, new Array(-1, 18));
currentProducts[238] = new Array(970, "Gridlock Down Jkt - Gridlock Down Jkt", 0, new Array(-1, 46));
currentProducts[239] = new Array(2330, "Grinder 2 LE - Grinder 2 LE", 72, new Array(-1, 27));
currentProducts[240] = new Array(626, "Ground - Ground Swell", 92, new Array(-1, 22));
currentProducts[241] = new Array(2130, "Guido - Guido", 92, new Array(-1, 22));
currentProducts[242] = new Array(636, "Gyro - Gyro", 119, new Array(-1, 22));
currentProducts[243] = new Array(21, "3/2mm - HAMMER 3/2 FULL", 3, new Array(-1, 20));
currentProducts[244] = new Array(84, "3/2mm - HAMMER 3/2MM", 3, new Array(-1, 43));
currentProducts[245] = new Array(272, "Convertible - HAMMER Convertible 3/2", 3, new Array(-1, 43));
currentProducts[246] = new Array(73, "Jacket - HAMMER JACKET", 3, new Array(-1, 3));
currentProducts[247] = new Array(6, "L/S Spring - HAMMER L/S SPRING", 3, new Array(-1, 12));
currentProducts[248] = new Array(101, "Spring - HAMMER S/S SPRING", 3, new Array(-1, 12));
currentProducts[249] = new Array(74, "1.5 Shorts - HAMMER SHORTS", 3, new Array(-1, 55));
currentProducts[250] = new Array(7, "Shorty - HAMMER SHORTY", 3, new Array(-1, 12));
currentProducts[251] = new Array(72, "Vest - HAMMER VEST", 3, new Array(-1, 3));
currentProducts[252] = new Array(2729, "Hat Tricks - Hat Tricks", 146, new Array(-1, 32));
currentProducts[253] = new Array(48, "3mm RT - HEAT 3MM RT BOOT", 12, new Array(-1, 7));
currentProducts[254] = new Array(49, "3mm ST - HEAT 3MM ST BOOT", 12, new Array(-1, 7));
currentProducts[255] = new Array(2, "3/2 - HEAT 3Q-ZIP 3/2 FSW", 46, new Array(-1, 20));
currentProducts[256] = new Array(97, "4/3 - HEAT 3Q-ZIP 4/3 FSW", 46, new Array(-1, 20));
currentProducts[257] = new Array(50, "HEAT 5MM - HEAT 5MM RT BOOT", 16, new Array(-1, 7));
currentProducts[258] = new Array(51, "7MM HEAT - HEAT 7MM RT BOOT", 16, new Array(-1, 7));
currentProducts[259] = new Array(93, "3MM Ninja - HEAT NINJA 3MM BOOT", 12, new Array(-1, 7, 11));
currentProducts[260] = new Array(1, "2MM - HEAT S/S FULL FSW 2MM", 46, new Array(-1, 20));
currentProducts[261] = new Array(104, "3mm fin sock - HEAT SOCK (PAIR)", 12, new Array(-1, 7));
currentProducts[262] = new Array(100, "5/3 Hooded ZEN - HEAT ZEN ZIP 5/3 W/HOOD FSW", 46, new Array(-1, 20));
currentProducts[263] = new Array(2798, "Hefner - Hefner", 159, new Array(-1, 22));
currentProducts[264] = new Array(2779, "Heidi - Heidi", 128, new Array(-1, 23));
currentProducts[265] = new Array(2727, "Hide and Seek - Hide and Seek", 146, new Array(-1, 32));
currentProducts[266] = new Array(2726, "Hopscotch - Hopscotch", 146, new Array(-1, 32));
currentProducts[267] = new Array(955, "Hormol Canvas Jacket - Hormol Canvas Jacket,", 0, new Array(-1, 46));
currentProducts[268] = new Array(974, "Hudson Jacket - Hudson Jacket", 0, new Array(-1, 16));
currentProducts[269] = new Array(2437, "Hybrid - Hybrid USCG Vest", 74, new Array(-1, 31));
currentProducts[270] = new Array(263, "HYBRID - HYBRID USCG VEST", 74, new Array(-1, 31));
currentProducts[271] = new Array(2784, "Ice Queen - Ice Queen", 128, new Array(-1, 23));
currentProducts[272] = new Array(2167, "In Bloom - In Bloom", 118, new Array(-1, 22));
currentProducts[273] = new Array(642, "Infant USCG - INFANT NYLON USCG VEST", 93, new Array(-1, 31));
currentProducts[274] = new Array(641, "Infant USCG - INFANT USCG VEST", 93, new Array(-1, 31));
currentProducts[275] = new Array(2671, "Initial - Initial", 126, new Array(-1, 41));
currentProducts[276] = new Array(385, "10 OZ Lycra - ISOTHERM FULL", 104, new Array(-1, 2));
currentProducts[277] = new Array(568, "Jackson - Jackson Hole", 0, new Array(-1, 16));
currentProducts[278] = new Array(196, "Jersey - Jersey", 0, new Array(-1, 18));
currentProducts[279] = new Array(2781, "Josie - Josie", 128, new Array(-1, 23));
currentProducts[280] = new Array(2659, "Journeyman - Journeyman", 139, new Array(-1, 32));
currentProducts[281] = new Array(200, "Juneau - Juneau Jacket", 0, new Array(-1, 16));
currentProducts[282] = new Array(569, "Kaleidoscope - Kaleidoscope", 0, new Array(-1, 16));
currentProducts[283] = new Array(2325, "Kamikaze - Kamikaze", 157, new Array(-1, 27));
currentProducts[284] = new Array(1052, "Kasey - Kasey", 126, new Array(-1, 23));
currentProducts[285] = new Array(570, "Kilowatt - Kilowatt", 0, new Array(-1, 16));
currentProducts[286] = new Array(199, "Kinetic - Kinetic Tech Hoodie", 0, new Array(-1, 16));
currentProducts[287] = new Array(571, "Knit - Knit Fit", 0, new Array(-1, 16));
currentProducts[288] = new Array(2696, "Knowing Jack - Knowing Jack", 0, new Array(-1, 33));
currentProducts[289] = new Array(630, "Koosh - Koosh", 119, new Array(-1, 22));
currentProducts[290] = new Array(2131, "Koosh Vulcanized - Koosh Vulcanized", 119, new Array(-1, 22));
currentProducts[291] = new Array(2795, "Kung Fu - Kung Fu", 159, new Array(-1, 22));
currentProducts[292] = new Array(2782, "Kyra - Kyra", 128, new Array(-1, 23));
currentProducts[293] = new Array(2583, "Lani Kai - Lani Kai", 140, new Array(-1, 32));
currentProducts[294] = new Array(2132, "Launch - Launch", 119, new Array(-1, 22));
currentProducts[295] = new Array(2436, "Law - Law USCG Vest", 74, new Array(-1, 31));
currentProducts[296] = new Array(2711, "Lawrence - Lawrence", 0, new Array(-1, 34));
currentProducts[297] = new Array(2707, "Lehigh - Lehigh", 110, new Array(-1, 35));
currentProducts[298] = new Array(971, "Lex Houndstooth Jacket - Lex Houndstooth Jacket", 0, new Array(-1, 16));
currentProducts[299] = new Array(1080, "Midlayer - Liner Jacket", 0, new Array(-1, 18));
currentProducts[300] = new Array(2777, "Lisa - Lisa", 128, new Array(-1, 23));
currentProducts[301] = new Array(2740, "Little Bohemia - Little Bohemia", 139, new Array(-1, 32));
currentProducts[302] = new Array(2802, "Livingston - Livingston", 131, new Array(-1, 32));
currentProducts[303] = new Array(2751, "Lizzy - Lizzy", 108, new Array(-1, 24));
currentProducts[304] = new Array(2323, "Lopez Freak - Lopez Freak", 10, new Array(-1, 27));
currentProducts[305] = new Array(2756, "Lucy - Lucy", 126, new Array(-1, 23));
currentProducts[306] = new Array(2735, "Lulu - Lulu", 146, new Array(-1, 32));
currentProducts[307] = new Array(2731, "Lumberjack - Lumberjack", 146, new Array(-1, 32));
currentProducts[308] = new Array(957, "Mad Cross Jacket - Mad Cross Jacket", 0, new Array(-1, 46));
currentProducts[309] = new Array(2012, "MAD JACKET - MAD JACKET", 43, new Array(-1, 46));
currentProducts[310] = new Array(2023, "MAD PANT - MAD PANT", 43, new Array(-1, 46));
currentProducts[311] = new Array(227, "Mad Pant - Mad Pant", 0, new Array(-1, 46));
currentProducts[312] = new Array(956, "Mad Plaid - Mad Plaid Jacket", 0, new Array(-1, 41));
currentProducts[313] = new Array(958, "Mad Stripe Jacket - Mad Stripe Jacket", 0, new Array(-1, 41));
currentProducts[314] = new Array(2737, "Main Event - Main Event", 139, new Array(-1, 32));
currentProducts[315] = new Array(365, "Marcano - Marcano", 0, new Array(-1, 16));
currentProducts[316] = new Array(2169, "Marguerite - Marguerite", 119, new Array(-1, 22));
currentProducts[317] = new Array(2787, "Marie - Marie", 66, new Array(-1, 23));
currentProducts[318] = new Array(2562, "Meg - Meg", 105, new Array(-1, 24));
currentProducts[319] = new Array(2210, "Meltdown - Meltdown", 113, new Array(-1, 32));
currentProducts[320] = new Array(1043, "Psycho2 - Mens 3/2MM FSW", 0, new Array(-1, 20));
currentProducts[321] = new Array(1044, "Psycho 2 - Mens 4/3 Custom", 0, new Array(-1, 20));
currentProducts[322] = new Array(108, "MENTAL - MENTAL USCG VEST", 74, new Array(-1, 31));
currentProducts[323] = new Array(2066, "MICROFLEECE SHIRT - MICROFLEECE SHIRT 3/4 ZIP", 134, new Array(-1, 48));
currentProducts[324] = new Array(2039, "MICROFLEECE - MICROFLEECE SHIRT 3/4 ZIP", 134, new Array(-1, 48));
currentProducts[325] = new Array(2067, "MICROFLEECE SHIRT - MICROFLEECE SHIRT PULLOVER", 134, new Array(-1, 48));
currentProducts[326] = new Array(197, "Microtek - Microtek Shirt", 0, new Array(-1, 18));
currentProducts[327] = new Array(2773, "Mischa - Mischa", 114, new Array(-1, 23));
currentProducts[328] = new Array(2520, "MOD JACKET - MOD SOFTSHELL JACKET", 44, new Array(-1, 46));
currentProducts[329] = new Array(366, "Modus - Modus", 0, new Array(-1, 16));
currentProducts[330] = new Array(2760, "Mono Springs - Mono Springs", 126, new Array(-1, 23));
currentProducts[331] = new Array(2683, "Monroe - Monroe", 128, new Array(-1, 35));
currentProducts[332] = new Array(959, "Morph Jacket - Morph Component Jacket", 0, new Array(-1, 46));
currentProducts[333] = new Array(972, "Morpha Jacket - Morpha Component Jacket", 0, new Array(-1, 16));
currentProducts[334] = new Array(2807, "Mosaic - Mosaic", 111, new Array(-1, 32));
currentProducts[335] = new Array(572, "Peabody - Mr Peabody", 0, new Array(-1, 16));
currentProducts[336] = new Array(2725, "Muse - Muse", 140, new Array(-1, 32));
currentProducts[337] = new Array(881, "Mutant Hood - MUTANT 2MM HOOD", 116, new Array(-1, 20));
currentProducts[338] = new Array(882, "Mutant Neck - MUTANT 2MM NECK", 116, new Array(-1, 20));
currentProducts[339] = new Array(880, "Mutant 3/2 - MUTANT 3/2 W/HOOD FSW", 116, new Array(-1, 20));
currentProducts[340] = new Array(2509, "MUTANT 3mm - MUTANT 3MM ST", 12, new Array(-1, 7));
currentProducts[341] = new Array(815, "Mutant ST - MUTANT 3MM ST BOOT", 116, new Array(-1, 7));
currentProducts[342] = new Array(878, "Mutant 4/3 - MUTANT 4/3 W/HOOD FSW", 116, new Array(-1, 20));
currentProducts[343] = new Array(879, "Mutant 5/4/3 - MUTANT 5/4 W/HOOD FSW", 116, new Array(-1, 20));
currentProducts[344] = new Array(828, "Mutant IST - MUTANT 6/5/4 INTERNAL SPLIT TOE", 16, new Array(-1, 7));
currentProducts[345] = new Array(1199, "Cement - NEOPRENE CEMENT", 0, new Array(-1, 47));
currentProducts[346] = new Array(2724, "New Leaf - New Leaf", 140, new Array(-1, 32));
currentProducts[347] = new Array(2720, "Night Flight - Night Flight", 161, new Array(-1, 32));
currentProducts[348] = new Array(2211, "Nightfall - Nightfall", 113, new Array(-1, 32));
currentProducts[349] = new Array(2783, "Norland - Norland", 128, new Array(-1, 23));
currentProducts[350] = new Array(573, "North - North Star", 0, new Array(-1, 16));
currentProducts[351] = new Array(2786, "North West - North West", 66, new Array(-1, 23));
currentProducts[352] = new Array(2739, "Northern Exposure - Northern Exposure", 139, new Array(-1, 32));
currentProducts[353] = new Array(2438, "Nylon - Nylon USCG Vest", 74, new Array(-1, 31));
currentProducts[354] = new Array(2431, "Nylon - Nylon USCG Vest", 74, new Array(-1, 31));
currentProducts[355] = new Array(2447, "O'Neill Mania - O'Neill Mania", 0, new Array(-1, 44));
currentProducts[356] = new Array(1198, "Cleaner - O'NEILL WETSUIT CLEANER", 0, new Array(-1, 47));
currentProducts[357] = new Array(1167, "Beaver Tail - O'RIGINAL BEAVER TAIL", 142, new Array(-1, 3));
currentProducts[358] = new Array(1169, "Long John - O'RIGINAL LONG JOHN", 142, new Array(-1, 12));
currentProducts[359] = new Array(1168, "Short John - O'RIGINAL SHORT JOHN", 142, new Array(-1, 12));
currentProducts[360] = new Array(1166, "Vest - O'RIGINAL VEST", 142, new Array(-1, 3));
currentProducts[361] = new Array(99, "8oz. O'Zone - O'ZONE HOOD", 7, new Array(-1, 4));
currentProducts[362] = new Array(2415, "L/S CREW - O'ZONE L/S CREW", 7, new Array(-1, 8));
currentProducts[363] = new Array(575, "CREW - O'ZONE S/S CREW", 7, new Array(-1, 8));
currentProducts[364] = new Array(580, "TECH L/S CREW - O'ZONE TECH L/S CREW", 89, new Array(-1, 8));
currentProducts[365] = new Array(581, "TECH L/S W/HOOD - O'ZONE TECH L/S W/HOOD", 89, new Array(-1, 8));
currentProducts[366] = new Array(579, "S/S Crew - O'ZONE TECH S/S CREW", 89, new Array(-1, 8));
currentProducts[367] = new Array(576, "Tech S/S CREW - O'ZONE TECH S/S CREW", 89, new Array(-1, 8));
currentProducts[368] = new Array(2748, "Oasis - Oasis", 72, new Array(-1, 24));
currentProducts[369] = new Array(2513, "OCTANE PANT - OCTANE DENIM PANT", 42, new Array(-1, 46));
currentProducts[370] = new Array(978, "Offset Jacket - Offset Jacket", 0, new Array(-1, 16));
currentProducts[371] = new Array(2676, "Olympus - Olympus", 125, new Array(-1, 41));
currentProducts[372] = new Array(2755, "Ottowa - Ottowa", 126, new Array(-1, 23));
currentProducts[373] = new Array(1205, "Outlaw - Outlaw Comp Vest", 75, new Array(-1, 31));
currentProducts[374] = new Array(111, "OUTLAW - OUTLAW COMP VEST", 75, new Array(-1, 31));
currentProducts[375] = new Array(961, "Outpost Down Jacket - Outpost Down Jacket", 0, new Array(-1, 46));
currentProducts[376] = new Array(960, "Outpost Herringbone Down - Outpost Herringbone Down Jacket", 0, new Array(-1, 41));
currentProducts[377] = new Array(2677, "Pacific Peacoat - Pacific Peacoat", 125, new Array(-1, 41));
currentProducts[378] = new Array(2805, "Paloma - Paloma", 131, new Array(-1, 32));
currentProducts[379] = new Array(479, "Passage - Passage", 0, new Array(-1, 16));
currentProducts[380] = new Array(2763, "Peabody - Peabody", 125, new Array(-1, 23));
currentProducts[381] = new Array(2788, "Peace - Peace", 66, new Array(-1, 23));
currentProducts[382] = new Array(2744, "Peacekeeper - Peacekeeper", 105, new Array(-1, 24));
currentProducts[383] = new Array(230, "Phat Down - Phat Down Jacket", 0, new Array(-1, 16));
currentProducts[384] = new Array(632, "Phluff - Phluff Daddy", 119, new Array(-1, 22));
currentProducts[385] = new Array(2334, "Pick Up - Pick Up", 105, new Array(-1, 28));
currentProducts[386] = new Array(372, "Pinkerton - Pinkerton", 0, new Array(-1, 16));
currentProducts[387] = new Array(480, "Pinkerton - Pinkerton", 0, new Array(-1, 16));
currentProducts[388] = new Array(975, "Pleat Jacket - Pleat Jacket", 0, new Array(-1, 16));
currentProducts[389] = new Array(976, "Pleat Print Jacket - Pleat Print Jacket", 0, new Array(-1, 16));
currentProducts[390] = new Array(2769, "Portland - Portland", 125, new Array(-1, 23));
currentProducts[391] = new Array(370, "Powergrid - Powergrid", 0, new Array(-1, 16));
currentProducts[392] = new Array(481, "Powergrid - Powergrid", 0, new Array(-1, 16));
currentProducts[393] = new Array(2681, "Preston - Preston", 128, new Array(-1, 35));
currentProducts[394] = new Array(2027, "PROPEL PANT - PROPEL PANT", 44, new Array(-1, 46));
currentProducts[395] = new Array(2033, "PROPEL PANT - PROPEL STRIPE PANT, INSULATED", 44, new Array(-1, 46));
currentProducts[396] = new Array(2762, "Psycho 2 - Psycho 2 4/3 MM", 40, new Array(-1, 20));
currentProducts[397] = new Array(2653, "Psycho 3 - Psycho 3", 139, new Array(-1, 32));
currentProducts[398] = new Array(184, "3/2 - PSYCHO-1 ZEN ZIP 3/2 FSW", 63, new Array(-1, 20));
currentProducts[399] = new Array(249, "4/3 - PSYCHO-1 ZEN ZIP 4/3 FSW", 63, new Array(-1, 20));
currentProducts[400] = new Array(186, "6/5/4 - PSYCHO-2 6/5/4 W/HOOD", 40, new Array(-1, 20));
currentProducts[401] = new Array(246, "3/2 ZEN - PSYCHO-2 ZEN ZIP 3/2 FSW", 40, new Array(-1, 20));
currentProducts[402] = new Array(2503, "3.5MM - PsychoFreak 3.5 FSW Minimal seam", 160, new Array(-1, 20));
currentProducts[403] = new Array(2504, "4.5MM - PsychoFreak 4.5/3.5 FSW", 160, new Array(-1, 20));
currentProducts[404] = new Array(2050, "QUILT JACKET - QUILT JACKET, INSULATED", 44, new Array(-1, 46));
currentProducts[405] = new Array(2803, "Quincy - Quincy", 131, new Array(-1, 32));
currentProducts[406] = new Array(2759, "Rainier - Rainier", 126, new Array(-1, 23));
currentProducts[407] = new Array(2607, "Rapture - Rapture", 105, new Array(-1, 28));
currentProducts[408] = new Array(98, "3/2 - REACTOR 3/2 FULL", 31, new Array(-1, 20));
currentProducts[409] = new Array(109, "REACTOR - REACTOR II USCG VEST", 74, new Array(-1, 31));
currentProducts[410] = new Array(22, "2MM - REACTOR JOHN & JACKET", 31, new Array(-1, 20));
currentProducts[411] = new Array(588, "Shorts - REACTOR SPORT SHORTS", 31, new Array(-1, 55));
currentProducts[412] = new Array(27, "Spring - REACTOR SPRING", 31, new Array(-1, 12));
currentProducts[413] = new Array(1208, "Youth Spring - Reactor Youth Spring", 31, new Array(-1, 53));
currentProducts[414] = new Array(228, "Recon Pant - Recon Pant", 0, new Array(-1, 46));
currentProducts[415] = new Array(221, "Resist - Resist Jacket", 0, new Array(-1, 16));
currentProducts[416] = new Array(2032, "REV PANT - REV PANT", 44, new Array(-1, 46));
currentProducts[417] = new Array(269, "Revenge - Revenge Comp Vest", 75, new Array(-1, 31));
currentProducts[418] = new Array(2430, "Revenge - Revenge USCG Vest", 74, new Array(-1, 31));
currentProducts[419] = new Array(2133, "Reverb - Reverb", 119, new Array(-1, 22));
currentProducts[420] = new Array(2799, "Rico - Rico", 159, new Array(-1, 22));
currentProducts[421] = new Array(2448, "Rings - Rings", 0, new Array(-1, 44));
currentProducts[422] = new Array(2212, "Rivermouth - Rivermouth", 113, new Array(-1, 32));
currentProducts[423] = new Array(2057, "RIVET PANT - RIVET RIBBON PANT", 44, new Array(-1, 46));
currentProducts[424] = new Array(2752, "Robinson - Robinson", 109, new Array(-1, 24));
currentProducts[425] = new Array(368, "Rocker - Rocker", 0, new Array(-1, 16));
currentProducts[426] = new Array(2712, "Rogers - Rogers", 0, new Array(-1, 34));
currentProducts[427] = new Array(2717, "Rolling Stone - Rolling Stone", 161, new Array(-1, 32));
currentProducts[428] = new Array(2661, "Rookie - Rookie", 139, new Array(-1, 32));
currentProducts[429] = new Array(2743, "Rosalie - Rosalie", 105, new Array(-1, 24));
currentProducts[430] = new Array(2718, "Round Trip - Round Trip", 161, new Array(-1, 32));
currentProducts[431] = new Array(2791, "Sandman - Sandman", 132, new Array(-1, 22));
currentProducts[432] = new Array(2686, "Savage - Savage", 0, new Array(-1, 33));
currentProducts[433] = new Array(2040, "Scant - Scant Horizon Jacket", 134, new Array(-1, 46));
currentProducts[434] = new Array(2693, "Scatter - Scatter", 0, new Array(-1, 33));
currentProducts[435] = new Array(2449, "Score - Score", 0, new Array(-1, 44));
currentProducts[436] = new Array(220, "Scottish Down - Scottish Down Jacket", 0, new Array(-1, 16));
currentProducts[437] = new Array(2761, "Sebastian - Sebastian", 126, new Array(-1, 23));
currentProducts[438] = new Array(149, "3mm - SECTOR 3MM GLOVE", 29, new Array(-1, 11));
currentProducts[439] = new Array(738, "3mm - SECTOR 3MM GLOVE", 29, new Array(-1, 11));
currentProducts[440] = new Array(740, "5mm - SECTOR 5MM GLOVE", 29, new Array(-1, 11));
currentProducts[441] = new Array(367, "Select - Select", 0, new Array(-1, 16));
currentProducts[442] = new Array(2656, "Sentry - Sentry", 139, new Array(-1, 32));
currentProducts[443] = new Array(2774, "Shana - Shana", 114, new Array(-1, 23));
currentProducts[444] = new Array(2710, "Sheridan - Sheridan", 0, new Array(-1, 34));
currentProducts[445] = new Array(198, "Sherpa - Sherpa Fleece", 0, new Array(-1, 16));
currentProducts[446] = new Array(1196, "Shin Skin - SHIN SKIN (SINGLE)", 0, new Array(-1, 32));
currentProducts[447] = new Array(2172, "Shoe In - Shoe In", 119, new Array(-1, 22));
currentProducts[448] = new Array(2667, "Shuffle - Shuffle", 72, new Array(-1, 27));
currentProducts[449] = new Array(2753, "Shuteye - Shuteye", 109, new Array(-1, 24));
currentProducts[450] = new Array(2733, "Sid - Sid", 146, new Array(-1, 32));
currentProducts[451] = new Array(219, "Silencer - Silencer Jacket", 0, new Array(-1, 16));
currentProducts[452] = new Array(2606, "Silverado - Silverado", 105, new Array(-1, 28));
currentProducts[453] = new Array(584, "L/S Hood - Skins 6oz L/S W/Hood", 17, new Array(-1, 8));
currentProducts[454] = new Array(2414, "MULTIGRAPHIC L/S CREW - Skins Graphic L/S Crew", 17, new Array(-1, 8));
currentProducts[455] = new Array(2411, "MULTIGRAPHIC S/S CREW - SKINS GRAPHIC L/S CREW", 17, new Array(-1, 8));
currentProducts[456] = new Array(2419, "GRAPHIC RASH TEE - SKINS GRAPHIC RASH TEE", 17, new Array(-1, 8));
currentProducts[457] = new Array(2399, "MULTIGRAPHIC S/S RASH TEE - SKINS GRAPHIC S/S RASH TEE", 17, new Array(-1, 8));
currentProducts[458] = new Array(83, "L/S CREW - SKINS L/S CREW", 17, new Array(-1, 8));
currentProducts[459] = new Array(2421, "L/S GRAPHIC CREW - SKINS L/S GRAPHIC CREW", 17, new Array(-1, 8));
currentProducts[460] = new Array(82, "L/S TURTLENECK - SKINS L/S TURTLENECK", 17, new Array(-1, 8));
currentProducts[461] = new Array(2402, "PRINTED L/S CREW - SKINS PRINTED L/S CREW", 17, new Array(-1, 8));
currentProducts[462] = new Array(2401, "PRINTED S/S CREW - SKINS PRINTED S/S CREW", 17, new Array(-1, 8));
currentProducts[463] = new Array(2400, "PRINTED SURF BOXER - SKINS PRINTED SURF BOXER", 17, new Array(-1, 55));
currentProducts[464] = new Array(2410, "S/S CREW - SKINS S/S CREW", 17, new Array(-1, 8));
currentProducts[465] = new Array(2420, "S/S GRAPHIC CREW - SKINS S/S GRAPHIC CREW", 17, new Array(-1, 8));
currentProducts[466] = new Array(95, "S/S RASH TEE - SKINS S/S RASH TEE", 17, new Array(-1, 8));
currentProducts[467] = new Array(81, "S/S TURTLENECK - SKINS S/S TURTLENECK", 17, new Array(-1, 8));
currentProducts[468] = new Array(71, "SHORTS - SKINS SHORTS", 17, new Array(-1, 55));
currentProducts[469] = new Array(585, "BOXER - SKINS SURF BOXER", 17, new Array(-1, 55));
currentProducts[470] = new Array(2398, "VEST - SKINS VEST", 17, new Array(-1, 8));
currentProducts[471] = new Array(2134, "Slider - Slider", 92, new Array(-1, 22));
currentProducts[472] = new Array(1079, "Fleece Crew - Smooth Face Fleece Crew", 0, new Array(-1, 18));
currentProducts[473] = new Array(2780, "Snowbunny - Snowbunny", 128, new Array(-1, 23));
currentProducts[474] = new Array(2135, "Soljah - Soljah", 119, new Array(-1, 22));
currentProducts[475] = new Array(483, "Specialist - Specialist", 0, new Array(-1, 16));
currentProducts[476] = new Array(1082, "3MM Specialist Drysuit - SPECIALIST DRYSUIT FSW", 99, new Array(-1, 20));
currentProducts[477] = new Array(373, "3MM - SPECIALIST DRYSUIT FSW", 99, new Array(-1, 0));
currentProducts[478] = new Array(627, "Stacked - Stacked", 92, new Array(-1, 22));
currentProducts[479] = new Array(2028, "STASH JACKET - STASH JACKET", 44, new Array(-1, 46));
currentProducts[480] = new Array(2666, "Static - Static", 72, new Array(-1, 27));
currentProducts[481] = new Array(2375, "Steady - Steady", 105, new Array(-1, 24));
currentProducts[482] = new Array(2665, "Steez - Steez", 72, new Array(-1, 27));
currentProducts[483] = new Array(2695, "Steez - Steez", 0, new Array(-1, 33));
currentProducts[484] = new Array(2701, "Stockton - Stockton", 114, new Array(-1, 35));
currentProducts[485] = new Array(2794, "Strands - Strands", 159, new Array(-1, 22));
currentProducts[486] = new Array(631, "Suave - Suave", 119, new Array(-1, 22));
currentProducts[487] = new Array(574, "Subzero - Subzero", 0, new Array(-1, 16));
currentProducts[488] = new Array(2771, "Sugarloaf - Sugarloaf", 114, new Array(-1, 23));
currentProducts[489] = new Array(2464, "Sunset State - Sunset State", 159, new Array(-1, 22));
currentProducts[490] = new Array(52, "2mm Tropical ST - SUPER FREAK SPLIT-TOE TROPICAL 2MM", 10, new Array(-1, 7));
currentProducts[491] = new Array(2137, "Super Jack - Super Jack", 92, new Array(-1, 22));
currentProducts[492] = new Array(2083, "Superfreak - Superfreak", 10, new Array(-1, 27));
currentProducts[493] = new Array(2136, "Superfreak - Superfreak", 92, new Array(-1, 22));
currentProducts[494] = new Array(829, "Super Freak 3MM - SUPERFREAK 3MM ST BOOT", 12, new Array(-1, 7));
currentProducts[495] = new Array(830, "Super Freak 5/4MM - SUPERFREAK 5/4MM ST BOOT", 16, new Array(-1, 7));
currentProducts[496] = new Array(2005, "SUPERFREAK PANT - SUPERFREAK BOARDPANT", 42, new Array(-1, 46));
currentProducts[497] = new Array(2327, "Superfreak Printed - Superfreak Printed", 10, new Array(-1, 27));
currentProducts[498] = new Array(2510, "TROPICAL SPLIT TOE - SUPERFREAK TROPICAL", 154, new Array(-1, 7));
currentProducts[499] = new Array(53, "2mm Tropical RT - SUPERFREAK TROPICAL RT BOOT", 154, new Array(-1, 7));
currentProducts[500] = new Array(271, "8 oz L/S - SUPERSKINS L/S 8 OZ CREW", 18, new Array(-1, 8));
currentProducts[501] = new Array(80, "8 oz. LS - SUPERSKINS LS CREW 8OZ.", 18, new Array(-1, 8));
currentProducts[502] = new Array(67, "8oz. S/S - SUPERSKINS S/S CREW 8OZ.", 18, new Array(-1, 8));
currentProducts[503] = new Array(79, "8 oz. SS - SUPERSKINS SS CREW 8 OZ.", 18, new Array(-1, 8));
currentProducts[504] = new Array(2723, "Surf Camp - Surf Camp", 140, new Array(-1, 32));
currentProducts[505] = new Array(2796, "Surf Turkey - Surf Turkey", 159, new Array(-1, 22));
currentProducts[506] = new Array(2668, "Swagger - Swagger", 72, new Array(-1, 27));
currentProducts[507] = new Array(2021, "SWELTER JACKET - SWELTER JACKET", 43, new Array(-1, 46));
currentProducts[508] = new Array(2138, "Switch - Switch", 119, new Array(-1, 22));
currentProducts[509] = new Array(2664, "T.I.A. Jordy - T.I.A. Jordy", 157, new Array(-1, 27));
currentProducts[510] = new Array(2604, "Tacoma - Tacoma", 105, new Array(-1, 28));
currentProducts[511] = new Array(2728, "Tag - Tag", 146, new Array(-1, 32));
currentProducts[512] = new Array(2519, "Talus - Talus Jacket", 43, new Array(-1, 46));
currentProducts[513] = new Array(2168, "Tea Party - Tea Party", 118, new Array(-1, 22));
currentProducts[514] = new Array(215, "Tech Tee - Tech ee", 134, new Array(-1, 46));
currentProducts[515] = new Array(2068, "TECH TEE - TECH TEE", 134, new Array(-1, 48));
currentProducts[516] = new Array(262, "The LAW - THE LAW USCG VEST", 74, new Array(-1, 31));
currentProducts[517] = new Array(61, "8oz. LS - THERMO L/S CREW", 2, new Array(-1, 2));
currentProducts[518] = new Array(31, "8 oz. Hooded - THERMO NEO-HOODED L/S", 2, new Array(-1, 2));
currentProducts[519] = new Array(30, "8oz. Hooded Vest - THERMO NEO-HOODED VEST", 2, new Array(-1, 2));
currentProducts[520] = new Array(60, "8oz. SS - THERMO S/S CREW", 2, new Array(-1, 2));
currentProducts[521] = new Array(59, "8oz. - THERMO SHORTS", 2, new Array(-1, 55));
currentProducts[522] = new Array(384, "13 oz - THERMO X FULL", 49, new Array(-1, 2, 20));
currentProducts[523] = new Array(404, "THERMO-X FULL - THERMO-X FULL", 49, new Array(-1, 2));
currentProducts[524] = new Array(58, "13oz. LS - THERMO-X L/S CREW", 49, new Array(-1, 2));
currentProducts[525] = new Array(402, "THERMO-X CREW - THERMO-X S/S CREW", 49, new Array(-1, 2));
currentProducts[526] = new Array(55, "13oz. SS - THERMO-X S/S CREW", 49, new Array(-1, 2));
currentProducts[527] = new Array(401, "VEST - THERMO-X VEST", 49, new Array(-1, 2));
currentProducts[528] = new Array(386, "1MM - THINSKINS 1MM FULL", 25, new Array(-1, 20));
currentProducts[529] = new Array(1171, "L/S Crew - THINSKINS SUPERFREAK L/S CREW", 26, new Array(-1, 3));
currentProducts[530] = new Array(1170, "S/S Crew - THINSKINS SUPERFREAK S/S CREW", 26, new Array(-1, 3));
currentProducts[531] = new Array(57, "L/S - THINSKINS SUPERLITE L/S CREW", 152, new Array(-1, 3));
currentProducts[532] = new Array(56, "SUPERLIGHT - THINSKINS SUPERLITE S/S CREW", 152, new Array(-1, 3));
currentProducts[533] = new Array(592, "Tank - ThinSkins Tank .5mm", 26, new Array(-1, 3));
currentProducts[534] = new Array(2766, "Thorn - Thorn", 125, new Array(-1, 23));
currentProducts[535] = new Array(2702, "Thunderbird - Thunderbird", 114, new Array(-1, 35));
currentProducts[536] = new Array(2326, "Thunderstruck - Thunderstruck", 157, new Array(-1, 27));
currentProducts[537] = new Array(2694, "Tiki Temple - Tiki Temple", 0, new Array(-1, 33));
currentProducts[538] = new Array(2469, "Tiki Ti - Tiki Ti", 118, new Array(-1, 22));
currentProducts[539] = new Array(2716, "Time Off - Time Off", 161, new Array(-1, 32));
currentProducts[540] = new Array(202, "Titan - Titan Jacket", 0, new Array(-1, 16));
currentProducts[541] = new Array(582, "O'ZONE FULL - TODDLER O'ZONE FULL", 90, new Array(-1, 40));
currentProducts[542] = new Array(583, "O'ZONE SPRING - TODDLER O'ZONE SPRING", 90, new Array(-1, 40));
currentProducts[543] = new Array(604, "Toddler Full - TODDLER REACTOR FULL", 31, new Array(-1, 53));
currentProducts[544] = new Array(603, "Toddler SP - TODDLER REACTOR SPRING", 31, new Array(-1, 53));
currentProducts[545] = new Array(2422, "SKINS HOODIE - TODDLER SKINS HOODIE", 90, new Array(-1, 40));
currentProducts[546] = new Array(1210, "SKINS S/S RASH TEE - TODDLER SKINS S/S RASH TEE", 90, new Array(-1, 40));
currentProducts[547] = new Array(2038, "Track Jacket - Track Jacket", 134, new Array(-1, 46));
currentProducts[548] = new Array(2512, "TRANQUIL JACKET - TRANQUIL SOFTSHELL JACKET", 42, new Array(-1, 46));
currentProducts[549] = new Array(2678, "Trench Town - Trench Town", 125, new Array(-1, 41));
currentProducts[550] = new Array(2660, "Tripper - Tripper", 139, new Array(-1, 32));
currentProducts[551] = new Array(2679, "Triumph - Triumph", 125, new Array(-1, 41));
currentProducts[552] = new Array(2715, "Triumph - Triumph", 0, new Array(-1, 34));
currentProducts[553] = new Array(2734, "Trudy - Trudy", 146, new Array(-1, 32));
currentProducts[554] = new Array(624, "Tsunami - Tsunami", 92, new Array(-1, 22));
currentProducts[555] = new Array(2171, "Twilight - Twiligt", 119, new Array(-1, 22));
currentProducts[556] = new Array(2053, "UNION JACKET - UNION STRIPE INSULATED", 44, new Array(-1, 46));
currentProducts[557] = new Array(2767, "Urban Legend - Urban Legend", 125, new Array(-1, 23));
currentProducts[558] = new Array(2605, "Vagabond - Vagabond", 105, new Array(-1, 28));
currentProducts[559] = new Array(2809, "Vagrant - Vagrant", 111, new Array(-1, 32));
currentProducts[560] = new Array(237, "VAPOR JACKET - VAPOR JACKET", 42, new Array(-1, 46));
currentProducts[561] = new Array(2682, "Villanova - Villanova", 128, new Array(-1, 35));
currentProducts[562] = new Array(369, "Vinny - Vinny", 0, new Array(-1, 16));
currentProducts[563] = new Array(981, "Vixen Denim Jean - Vixen Denim Jean", 0, new Array(-1, 17));
currentProducts[564] = new Array(2054, "VIXEN PANT - VIXEN DENIM PANT", 44, new Array(-1, 46));
currentProducts[565] = new Array(977, "VIXEN - VIXEN JACKET", 44, new Array(-1, 16));
currentProducts[566] = new Array(2692, "Volta - Volta", 0, new Array(-1, 33));
currentProducts[567] = new Array(2708, "Wainwright - Wainwright", 110, new Array(-1, 35));
currentProducts[568] = new Array(2772, "Whistler - Whistler", 114, new Array(-1, 23));
currentProducts[569] = new Array(398, "EVO BOOT - WINDSURF BOOT #2042", 16, new Array(-1, 7));
currentProducts[570] = new Array(2709, "Winslow - Winslow", 110, new Array(-1, 35));
currentProducts[571] = new Array(2518, "WIRED JACKET - WIRED JACKET", 43, new Array(-1, 46));
currentProducts[572] = new Array(2730, "Wise Guy - Wise Guy", 146, new Array(-1, 32));
currentProducts[573] = new Array(464, "Wmn's Belay - Wmn's Belay Jacket", 0, new Array(-1, 16));
currentProducts[574] = new Array(2418, "TIE SHORT - WMNS SKINS TIE SHORT", 17, new Array(-1, 8));
currentProducts[575] = new Array(597, "L/S HOODIE - WMS 24/7 L/S HOODIE", 56, new Array(-1, 8));
currentProducts[576] = new Array(598, "S/S Tee - WMS 24/7 S/S TEE", 56, new Array(-1, 8));
currentProducts[577] = new Array(388, "Explore 3/2 - WMS 3000X S/S SPRING", 43, new Array(-1, 12));
currentProducts[578] = new Array(1150, "Explore 3mm - WMS 3MM EXPLORE FULL", 100, new Array(-1, 54));
currentProducts[579] = new Array(245, "WMS 3mm Gooru - WMS 3mm GOORU ST BOOT", 4, new Array(-1, 7));
currentProducts[580] = new Array(733, "J-Type - WMS 3MM J-TYPE 2XFSW", 79, new Array(-1, 20));
currentProducts[581] = new Array(392, "Sector 3MM - WMS 3MM SECTOR FSW FULL", 102, new Array(-1, 51));
currentProducts[582] = new Array(393, "System 3MM - WMS 3MM SYSTEM JOHN & JKT GBS", 103, new Array(-1, 54));
currentProducts[583] = new Array(382, "Sector 5MM - WMS 5MM SECTOR FSW FULL", 102, new Array(-1, 51));
currentProducts[584] = new Array(861, "7MM Dry - WMS 7000X DRYSUIT FSW", 22, new Array(-1, 20));
currentProducts[585] = new Array(731, "7000X Drysuit - WMS 7000X DRYSUIT FSW", 99, new Array(-1, 0));
currentProducts[586] = new Array(858, "J-Type 7MM - WMS 7MM J-TYPE 2XFSW W/HOOD", 101, new Array(-1, 51));
currentProducts[587] = new Array(380, "J-TYPE - WMS 7MM J-TYPE 2XFSW W/HOOD", 23, new Array(-1, 0));
currentProducts[588] = new Array(1151, "Sector - WMS 7MM SECTOR FSW FULL", 97, new Array(-1, 51));
currentProducts[589] = new Array(381, "Sector 7MM - WMS 7MM SECTOR FSW FULL", 23, new Array(-1, 0));
currentProducts[590] = new Array(859, "7MM w/ Hood - WMS 7MM SYSTEM J&J GBS W/HOOD", 22, new Array(-1, 20));
currentProducts[591] = new Array(730, "Jon and Jacket - WMS 7MM SYSTEM J&J GBS W/HOOD", 23, new Array(-1, 0));
currentProducts[592] = new Array(234, "WMS Approach - WMS Approach Jacket", 0, new Array(-1, 16));
currentProducts[593] = new Array(189, "WMS Ariel - WMS Ariel Fleece", 0, new Array(-1, 16));
currentProducts[594] = new Array(213, "WMS Atlas - WMS Atlas Jacket", 0, new Array(-1, 16));
currentProducts[595] = new Array(1160, "Booty - WMS BAHIA 1MM BOOTY HALTER", 141, new Array(-1, 3));
currentProducts[596] = new Array(1161, "Front-Zip - WMS BAHIA 1MM FRONT-ZIP JACKE", 141, new Array(-1, 3));
currentProducts[597] = new Array(591, "Short - WMS BAHIA 1MM SHORT", 141, new Array(-1, 3));
currentProducts[598] = new Array(1157, "Sport Top - WMS BAHIA 1MM SPORT TOP", 141, new Array(-1, 3));
currentProducts[599] = new Array(1158, "Surkini - WMS BAHIA 1MM SURFKINI", 141, new Array(-1, 3));
currentProducts[600] = new Array(1159, "Tank - WMS BAHIA 1MM TANK", 141, new Array(-1, 3));
currentProducts[601] = new Array(1163, "L/S Spring - WMS BAHIA 2/1MM LS SHORT SPRN", 141, new Array(-1, 12));
currentProducts[602] = new Array(1165, "Bahia John - WMS BAHIA 2MM JOHN", 141, new Array(-1, 12));
currentProducts[603] = new Array(594, "GBS Full - WMS BAHIA GBS 3/2 FULL", 141, new Array(-1, 52));
currentProducts[604] = new Array(206, "WMS Cosmos - WMS Cosmos Pant", 0, new Array(-1, 17));
currentProducts[605] = new Array(182, "3Q-Zip 3/2 - WMS D-LUX 3Q-ZIP 3/2 FSW", 122, new Array(-1, 0));
currentProducts[606] = new Array(894, "3/2 3Q Zip - WMS D-LUX 3Q-ZIP 3/2 FSW", 122, new Array(-1, 52));
currentProducts[607] = new Array(853, "4/3 3Q Zip - WMS D-LUX 3Q-ZIP 4/3 FSW", 122, new Array(-1, 0));
currentProducts[608] = new Array(195, "WMS Digital - WMS Digital Jacket", 0, new Array(-1, 16));
currentProducts[609] = new Array(11, "Epic 2 3/2 - WMS EPIC-2 3/2 CT", 55, new Array(-1, 0));
currentProducts[610] = new Array(886, "3/2 - WMS EPIC-2 3/2 CT", 55, new Array(-1, 54));
currentProducts[611] = new Array(12, "Epic 2 4/3 - WMS EPIC-2 4/3 CT", 55, new Array(-1, 0));
currentProducts[612] = new Array(887, "4/3 - WMS EPIC-2 4/3 CT", 55, new Array(-1, 52));
currentProducts[613] = new Array(406, "EVO FULL - WMS EVO ZEN ZIP 5/4/3 FSW #2070", 1, new Array(-1, 1));
currentProducts[614] = new Array(407, "CONVERTIBLE EVO - WMS EVOLUTION 3/2 CONV FSW #2069", 1, new Array(-1, 1));
currentProducts[615] = new Array(214, "WMS Faux - WMS Faux Jacket", 0, new Array(-1, 16));
currentProducts[616] = new Array(2434, "Flare - Wms Flare Comp Vest", 75, new Array(-1, 31));
currentProducts[617] = new Array(194, "WMS Float - WMS Float Jacket", 0, new Array(-1, 16));
currentProducts[618] = new Array(193, "WMS Float - WMS Float Vest", 0, new Array(-1, 16));
currentProducts[619] = new Array(267, "WMS Fluid 3Q - WMS Fluid 3Q Leg FSW", 38, new Array(-1, 0));
currentProducts[620] = new Array(405, "CONVERTIBLE FLX - WMS FLX 3/2 CONV CT #2073", 8, new Array(-1, 1));
currentProducts[621] = new Array(178, "FLX 5/4/3 - WMS FLX 5/4/3 CT #2074", 8, new Array(-1, 1));
currentProducts[622] = new Array(223, "WMS Gold Coast - WMS Gold Coast Pant", 0, new Array(-1, 17));
currentProducts[623] = new Array(233, "WMS HACE Jkt - WMS HACE Jacket", 0, new Array(-1, 16));
currentProducts[624] = new Array(892, "Hailo 3/2 - WMS HAILO ZEN ZIP 3/2 FSW", 158, new Array(-1, 52));
currentProducts[625] = new Array(893, "Hailo 4/3 - WMS HAILO ZEN ZIP 4/3 FSW", 158, new Array(-1, 51));
currentProducts[626] = new Array(2507, "Hammer 3/2 - WMS Hammer 3/2 Fulll", 3, new Array(-1, 54));
currentProducts[627] = new Array(63, "2mm Jacket - WMS HAMMER JACKET", 3, new Array(-1, 3));
currentProducts[628] = new Array(102, "2mm SS - WMS HAMMER S/S SPRING", 3, new Array(-1, 12));
currentProducts[629] = new Array(250, "4/3 - WMS Heat 3Q Zip 4/3mm FSW", 46, new Array(-1, 0));
currentProducts[630] = new Array(253, "5/3 (Dist only) - WMS Heat 3Q Zip 5/3 FSW (distributor only)", 46, new Array(-1, 0));
currentProducts[631] = new Array(181, "5/3 Hooded - WMS Heat 5/3 W/Hood FSW", 46, new Array(-1, 0));
currentProducts[632] = new Array(211, "WMS Hyper - WMS Hyper Jacket", 0, new Array(-1, 16));
currentProducts[633] = new Array(187, "WMS Jersey - WMS Jersey", 0, new Array(-1, 18));
currentProducts[634] = new Array(190, "WMS Kinetic - WMS Kinetic Tech Hoodie", 0, new Array(-1, 16));
currentProducts[635] = new Array(232, "WMS Lead - WMS Lead Pant", 42, new Array(-1, 17));
currentProducts[636] = new Array(225, "WMS Left Bank Down - WMS Left Bank Down Jacket", 0, new Array(-1, 16));
currentProducts[637] = new Array(188, "WMS Microtek - WMS Microtek Shirt", 0, new Array(-1, 18));
currentProducts[638] = new Array(890, "Mod Hood - WMS MOD 2MM HOOD", 124, new Array(-1, 51));
currentProducts[639] = new Array(891, "Mod Neck - WMS MOD 2MM NECK", 124, new Array(-1, 51));
currentProducts[640] = new Array(2071, "MOD 4/3 - WMS MOD 4/3 W/HOOD FSW", 124, new Array(-1, 51));
currentProducts[641] = new Array(889, "MOD 5/4 - WMS MOD 5/4 W/HOOD FSW", 124, new Array(-1, 51));
currentProducts[642] = new Array(595, "O'ZONE TECH L/S - WMS O'ZONE TECH L/S CREW", 89, new Array(-1, 8));
currentProducts[643] = new Array(596, "O'ZONE TECH - WMS O'ZONE TECH S/S CREW", 89, new Array(-1, 8));
currentProducts[644] = new Array(124, "OUTLAW - WMS OUTLAW COMP VEST", 75, new Array(-1, 31));
currentProducts[645] = new Array(24, "3/2 ZEN Zip - WMS PSYCHO-2 ZEN ZIP 3/2 FSW", 40, new Array(-1, 0));
currentProducts[646] = new Array(884, "WMS Psycho 2 4/3 - WMS PSYCHO-2 ZEN ZIP 4/3 FSW", 40, new Array(-1, 51));
currentProducts[647] = new Array(25, "4/3 Z.E.N. - WMS PSYCHO-2 ZEN ZIP 4/3 FSW", 40, new Array(-1, 0));
currentProducts[648] = new Array(2508, "PsychoFreak - WMS PsychoFreak", 160, new Array(-1, 51));
currentProducts[649] = new Array(212, "WMS Puffy - WMS Puffy Jacket", 0, new Array(-1, 16));
currentProducts[650] = new Array(123, "REACTOR 2 - WMS REACTOR 2 USCG VEST", 74, new Array(-1, 31));
currentProducts[651] = new Array(28, "3/2mm - WMS REACTOR 3/2 FULL", 31, new Array(-1, 54));
currentProducts[652] = new Array(26, "2mm John & Jacket - WMS REACTOR JOHN & JACKET", 31, new Array(-1, 54));
currentProducts[653] = new Array(29, "2mm - WMS REACTOR SPRING", 31, new Array(-1, 12));
currentProducts[654] = new Array(224, "WMS Shinjuku - WMS Shinjuku Pant", 0, new Array(-1, 17));
currentProducts[655] = new Array(122, "SIREN - WMS SIREN LUMBAR SUPPORT USCG", 74, new Array(-1, 31));
currentProducts[656] = new Array(70, "Cap 6oz. - WMS SKINS CAP SLEEVE", 17, new Array(-1, 8));
currentProducts[657] = new Array(89, "L/S CREW - WMS SKINS L/S CREW", 17, new Array(-1, 8));
currentProducts[658] = new Array(1155, "Cap Print - WMS SKINS PRINTED CAP SLEEVE", 17, new Array(-1, 8));
currentProducts[659] = new Array(1153, "PRINTED L/S CREW - WMS SKINS PRINTED L/S CREW", 17, new Array(-1, 8));
currentProducts[660] = new Array(1152, "PRINTED S/S CREW - WMS SKINS PRINTED S/S CREW", 17, new Array(-1, 8));
currentProducts[661] = new Array(1156, "Printed Tank - WMS SKINS PRINTED TANK", 17, new Array(-1, 8));
currentProducts[662] = new Array(2417, "PRINTED VEST - WMS SKINS PRINTED VEST", 17, new Array(-1, 8));
currentProducts[663] = new Array(94, "S/S CREW - WMS SKINS S/S CREW", 17, new Array(-1, 8));
currentProducts[664] = new Array(1154, "S/S RASH TEE - WMS SKINS S/S RASH TEE", 17, new Array(-1, 8));
currentProducts[665] = new Array(69, "S/S TURTLENECK - WMS SKINS S/S TURTLENECK", 17, new Array(-1, 8, 10));
currentProducts[666] = new Array(602, "SKINS SHORT - WMS SKINS SHORT", 17, new Array(-1, 8));
currentProducts[667] = new Array(618, "TANK - WMS SKINS TANK", 17, new Array(-1, 8));
currentProducts[668] = new Array(2416, "VEST - WMS SKINS VEST", 17, new Array(-1, 8));
currentProducts[669] = new Array(192, "WMS Smooth - WMS Smooth Jacket", 0, new Array(-1, 16));
currentProducts[670] = new Array(226, "Soho - WMS Soho Jacket", 0, new Array(-1, 16));
currentProducts[671] = new Array(191, "WMS Temple - WMS Temple Jacket", 0, new Array(-1, 16));
currentProducts[672] = new Array(62, "8oz. LS - WMS THERMO L/S CREW", 2, new Array(-1, 2, 10));
currentProducts[673] = new Array(91, "8oz. SS - WMS THERMO S/S CREW", 2, new Array(-1, 2, 10));
currentProducts[674] = new Array(1206, "Thnskins Full - WMS THINSKINS 1MM FULL", 26, new Array(-1, 54));
currentProducts[675] = new Array(399, "6/4 Hooded - Womens PSYCHO II 6/4 ZEN ZIP W/HOOD", 40, new Array(-1, 0));
currentProducts[676] = new Array(2423, "24-7 HOODIE - YOUTH 24-7 HOODIE", 151, new Array(-1, 8));
currentProducts[677] = new Array(873, "24/7 S/S CREW - YOUTH 24/7 S/S CREW", 151, new Array(-1, 8));
currentProducts[678] = new Array(869, "Epic 3/2 - YOUTH EPIC-2 3/2 CT", 55, new Array(-1, 53));
currentProducts[679] = new Array(870, "Epic 3/4 - YOUTH EPIC-2 4/3 CT", 55, new Array(-1, 53));
currentProducts[680] = new Array(871, "Youth 1.5 - YOUTH GOORU L/S CREW", 4, new Array(-1, 3));
currentProducts[681] = new Array(872, "Hammer 3/2 - YOUTH HAMMER 3/2 FULL", 3, new Array(-1, 53));
currentProducts[682] = new Array(2198, "Hammer - YOUTH HAMMER S/S SPRING", 3, new Array(-1, 53));
currentProducts[683] = new Array(814, "Youth RT - YOUTH HEAT 3MM RT BOOT", 12, new Array(-1, 7));
currentProducts[684] = new Array(2075, "YOUTH HOOD - YOUTH MUTANT 2MM HOOD", 116, new Array(-1, 53));
currentProducts[685] = new Array(2076, "YOUTH NECK - YOUTH MUTANT 2MM NECK", 116, new Array(-1, 53));
currentProducts[686] = new Array(2074, "Mutant 3/2 - YOUTH MUTANT 3/2 W/HOOD FSW", 116, new Array(-1, 53));
currentProducts[687] = new Array(2073, "Mutant 4/3 - YOUTH MUTANT 4/3 W/HOOD FSW", 116, new Array(-1, 53));
currentProducts[688] = new Array(2072, "Mutant 5/4 - YOUTH MUTANT 5/4 W/HOOD FSW", 116, new Array(-1, 53));
currentProducts[689] = new Array(637, "Youth Nylon - YOUTH NYLON USCG VEST", 93, new Array(-1, 31));
currentProducts[690] = new Array(867, "Psycho 1 3/2 - YOUTH PSYCHO-1 ZEN ZIP 3/2 FSW", 63, new Array(-1, 53));
currentProducts[691] = new Array(868, "Psycho 1 3/4 - YOUTH PSYCHO-1 ZEN ZIP 4/3 FSW", 63, new Array(-1, 53));
currentProducts[692] = new Array(1209, "Reactor 3/2 - YOUTH REACTOR 3/2 FULL", 31, new Array(-1, 53));
currentProducts[693] = new Array(875, "L/S CREW - YOUTH SKINS L/S CREW", 151, new Array(-1, 8));
currentProducts[694] = new Array(2428, "SKINS PRINTED L/S CREW - YOUTH SKINS PRINTED L/S CREW", 151, new Array(-1, 8));
currentProducts[695] = new Array(2427, "SKINS PRINTED L/S CREW - YOUTH SKINS PRINTED L/S CREW", 151, new Array(-1, 40));
currentProducts[696] = new Array(2426, "SKINS PRINTED S/S CREW - YOUTH SKINS PRINTED S/S CREW", 151, new Array(-1, 8));
currentProducts[697] = new Array(876, "SKINS S/S CREW - YOUTH SKINS S/S CREW", 151, new Array(-1, 8));
currentProducts[698] = new Array(1207, "SKINS S/S RASH TEE - YOUTH SKINS S/S RASH TEE", 151, new Array(-1, 8));
currentProducts[699] = new Array(877, "SKINS SHORTS - YOUTH SKINS SHORTS", 151, new Array(-1, 8));
currentProducts[700] = new Array(639, "Youth USCG - YOUTH USCG VEST", 93, new Array(-1, 31));
currentProducts[701] = new Array(2511, "ZAIUS JACKET - ZAIUS DOWN JACKET", 42, new Array(-1, 46));
currentProducts[702] = new Array(482, "Zero - Zero", 0, new Array(-1, 16));
currentProducts[703] = new Array(2049, "ZIRA JACKET - ZIRA DOWN JACKET", 44, new Array(-1, 46));
currentProducts[704] = new Array(2758, "Zoe - Zoe", 126, new Array(-1, 23));
currentProducts[705] = new Array(2466, "Zuma - Zuma", 159, new Array(-1, 22));

function bubbleSort(inputArray, start, rest) 
{
	for (var i = rest - 1; i >= start;  i--) 
	{
		for (var j = start; j <= i; j++) 
		{
			if (inputArray[j+1][1] < inputArray[j][1]) 
			{
				var tempValue = inputArray[j];
				inputArray[j] = inputArray[j+1];
				inputArray[j+1] = tempValue;
			}
		}
	}
	
	return inputArray;
}


function saveAction(selectedAction, formObject)
{
	formObject.act.value = selectedAction;
	if (selectedAction == "delete") 
	{
		return confirm("Are you sure you wish to delete this Product?\nIt's content will be permanently removed from the system.");
	} 
	
	else 
	{
		return true;
	}
}

function checkLink(curForm)
{
	errorLine = "";
	
	if (curForm == "EditForm")
	{
		fname = new String(document.EditForm.e_image_file.value);
		place = fname.indexOf(".jpg");
		place2 = fname.indexOf(".swf");
		
		fname2 = new String(document.EditForm.e_media_file.value);
		place3 = fname2.indexOf(".jpg");
		place4 = fname2.indexOf(".swf");
		
		caption = new String(document.EditForm.caption.value);
		
		if (place != fname.length - 4 && place2 != fname.length - 4 && fname.trim().length > 0)
		{
			errorLine = errorLine + "You must specify either a jpg or swf file for image items.\n";
		}
		
		if (place3 != fname2.length - 4 && place4 != fname2.length - 4 && fname2.trim().length > 0)
		{
			errorLine = errorLine + "You must specify either a jpg or swf file for media items.\n";
		}
	}
	
	else if (curForm == "AddForm")
	{
		fname = new String(document.AddForm.a_image_file.value);
		place = fname.indexOf(".jpg");
		place2 = fname.indexOf(".swf");
		
		if (place != fname.length - 4 && place2 != fname.length - 4 && fname.trim().length > 0)
		{
			errorLine = errorLine + "You must specify either a jpg or swf file for image items.\n";
		}
		
	}
	
	if (errorLine != "")
	{
		alert(errorLine);
		return false;	
	}
	
	else
	{
		return true;	
	}
}

function deleteWarn(checkbox)
{
	if (checkbox.checked == true)
	{
		return confirm("Are you sure you want to delete this products item?\nIt's content will be permanently removed from the system.");		
	}

	else
	{
		return true;
	}
}

function countSeries(sportID)
{
	var count = 0;
	
	for (var i = 0; i < seriesList.length; i++)
	{ 
		if (seriesList[i][0] == sportID)
		{
			count = count + 1;				
		}
	}
	
	return count;
}

function countTypes(sportID)
{
	var count = 0;
	
	for (var i = 0; i < typeList.length; i++)
	{ 
		if (typeList[i][0] == sportID)
		{
			count = count + 1;				
		}
	}
	
	return count;
}

function CountNum(sportID, data)
{
	var count = 0;
	
	for (var i = 0; i < data.length; i++)
	{
		if (InArray(sportID, data[i][2]))
		{
			count = count + 1		
		}
	}
	
	return count;
}

function InArray(sportID, data)
{
	found = false;
	
	for (var i = 0; i < data.length; i++)
	{
		if (data[i] == sportID)
		{
			found = true;
			break;				
		}
	}
	
	return found;
}

function InDDL(formName, selectName, val)
{
	var found = false;
	var len = document.forms[formName].elements[selectName].options.length;
	
	for (var i = 0; i < len; i++)
	{
		if (document.forms[formName].elements[selectName].options[i].value == val)
		{
			found = true;
			break;		
		}	
	}
	
	return found;
}

function setupDDL_Fields(formName, selectName, sportName, dataField, currIndex)
{
	var currSelection = document.forms[formName].elements[sportName].selectedIndex; 
	var currSport = document.forms[formName].elements[sportName].options[currSelection].value;
			
	if (currSport != "")
	{
		var place = 1;
		
		document.forms[formName].elements[selectName].options.length = CountNum(currSport, dataField) + 1; 
		
		document.forms[formName].elements[selectName].options[0].text = ""; 
		document.forms[formName].elements[selectName].options[0].value = "";
		document.forms[formName].elements[selectName].options[0].selected = true;
		
		for (var i = 0; i < dataField.length; i++)
		{ 
			if (InArray(currSport, dataField[i][2]))
			{
				document.forms[formName].elements[selectName].options[place].value = dataField[i][0]; 
				document.forms[formName].elements[selectName].options[place].text = dataField[i][1];
				
				if (currIndex && dataField[i][0] == currIndex)
				{
					document.forms[formName].elements[selectName].options[place].selected = true;				
				}
				
				place = place + 1;				
			}
		}
		
		if (place == 1)
		{
			document.forms[formName].elements[selectName].options.length = 1; 
			document.forms[formName].elements[selectName].options[0].text = "NONE Currently"; 
			document.forms[formName].elements[selectName].options[0].value = ""; 
		}
	}
	
	else
	{
		document.forms[formName].elements[selectName].options.length = 1; 
		document.forms[formName].elements[selectName].options[0].text = "Select a Sport First"; 
		document.forms[formName].elements[selectName].options[0].value = ""; 
	}
}

function setupDDL (formName)
{
	setupDDL_Fields(formName, "seriesID","sportID", currentSeries);
	setupDDL_Fields(formName, "typeID", "sportID", currentTypes);

	document.forms[formName].elements["productID"].options.length = 1;	
	document.forms[formName].elements["productID"].options[0].text = "Select a Type & Series First"; 
	document.forms[formName].elements["productID"].options[0].value = "";
	document.forms[formName].elements["productID"].options[0].selected = true;
}

function setupProductsDDL (formName)
{
	var currSeriesIndex = document.forms[formName].elements["seriesID"].selectedIndex; 
	var currSeries = document.forms[formName].elements["seriesID"].options[currSeriesIndex].value;

	var currTypeIndex = document.forms[formName].elements["typeID"].selectedIndex; 
	var currType = document.forms[formName].elements["typeID"].options[currTypeIndex].value;
	
	if (currType != "" && currSeries != "")
	{
		var count = 0;
		var tempProducts = new Array();
		
		for (i = 0; i < currentProducts.length; i++)
		{
			if (currentProducts[i][2] == currSeries && InArray(currType, currentProducts[i][3]))
			{
				tempProducts[count] = new Array(currentProducts[i][0], currentProducts[i][1]);
				count = count + 1;
			}	
		}	
	
		if (tempProducts.length > 0)
		{
			document.forms[formName].elements["productID"].options.length = tempProducts.length + 1; 
			
			document.forms[formName].elements["productID"].options[0].text = ""; 
			document.forms[formName].elements["productID"].options[0].value = "";
			document.forms[formName].elements["productID"].options[0].selected = true;
			
			for (var i = 0; i < tempProducts.length; i++)
			{ 
				document.forms[formName].elements["productID"].options[i + 1].value = tempProducts[i][0]; 
				document.forms[formName].elements["productID"].options[i + 1].text = tempProducts[i][1];
			}
		}
		
		else
		{
			document.forms[formName].elements["productID"].options.length = 1; 
			document.forms[formName].elements["productID"].options[0].text = "NONE With This Type/Series Combo"; 
			document.forms[formName].elements["productID"].options[0].value = ""; 
		}
	}
}

function ShowIt(id)
{
	current_item = id;
	
	var item = document.getElementById(id);
	
	if (item)
		item.style.display = 'inline';
}

function HideIt(id)
{
	var item = document.getElementById(id);
	
	if (item)
		item.style.display = 'none';
}

function showHide(id)
{
	if (showFeatures == 0)
	{
		showFeatures = 1;
		ShowIt(id);	
	}
	
	else
	{
		showFeatures = 0;
		HideIt(id);	
	}
}

function validEmail(email)
{
	var str = email;
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
	
	if (filter.test(str))
		return true;
	
	else
		return false;
}

function validate(formName)
{
	var errorLine = "";
	
	// Radio Buttons
	gender = false;
	for (i=0; i < document.forms[formName].elements["gender"].length; i++) 
	{
		if (document.forms[formName].elements["gender"][i].checked) 
		{
		  gender = true;
		  break;
		}
	}
	
	// Check Boxes
	var sportsUse = false;
	for (var i = 0; i < document.forms[formName].elements["sportsUse[]"].length; i++)
	{
		if (document.forms[formName].elements["sportsUse[]"][i].checked)
		{
			sportsUse = true;
			break;		
		}
	}
	
	var sportsPlay = false;
	for (var i = 0; i < document.forms[formName].elements["sportsPlay[]"].length; i++)
	{
		if (document.forms[formName].elements["sportsPlay[]"][i].checked)
		{
			sportsPlay = true;
			break;		
		}
	}
	
	// Text Boxes
	var first = document.forms[formName].elements["first"].value.trim();
	var last = document.forms[formName].elements["last"].value.trim();
	var born = document.forms[formName].elements["born"].value.trim();
	var city = document.forms[formName].elements["city"].value.trim();
	var zipcode = document.forms[formName].elements["zipcode"].value.trim();
	var email = document.forms[formName].elements["email"].value.trim();
	var purchased = document.forms[formName].elements["purchased"].value.trim();	

	// Drop Down Boxes
	var currStateIndex = document.forms[formName].elements["state"].selectedIndex; 
	var currState = document.forms[formName].elements["state"].options[currStateIndex].value;
	
	var currCountryIndex = document.forms[formName].elements["country"].selectedIndex; 
	var currCountry = document.forms[formName].elements["country"].options[currCountryIndex].value;
	
	var currSportIndex = document.forms[formName].elements["sportID"].selectedIndex; 
	var currSport = document.forms[formName].elements["sportID"].options[currSportIndex].value;
	
	var currTypeIndex = document.forms[formName].elements["typeID"].selectedIndex; 
	var currType = document.forms[formName].elements["typeID"].options[currTypeIndex].value;
	
	var currSeriesIndex = document.forms[formName].elements["seriesID"].selectedIndex; 
	var currSeries = document.forms[formName].elements["seriesID"].options[currSeriesIndex].value;
	
	var currProductIndex = document.forms[formName].elements["productID"].selectedIndex; 
	var currProduct = document.forms[formName].elements["productID"].options[currProductIndex].value;
	
	var currCategoryIndex = document.forms[formName].elements["categoryID"].selectedIndex; 
	var currCategory = document.forms[formName].elements["categoryID"].options[currCategoryIndex].value;
	
	var currUseIndex = document.forms[formName].elements["useID"].selectedIndex; 
	var currUse = document.forms[formName].elements["useID"].options[currUseIndex].value;
	
	var currHearIndex = document.forms[formName].elements["hearID"].selectedIndex; 
	var currHear = document.forms[formName].elements["hearID"].options[currHearIndex].value;
	
	var currReasonIndex = document.forms[formName].elements["reasonID"].selectedIndex; 
	var currReason = document.forms[formName].elements["reasonID"].options[currReasonIndex].value;
	
	if (first == "")
		errorLine += "\t- First Name\n";
		
	if (last == "")
		errorLine += "\t- Last Name\n";
	
	if (!gender)
		errorLine += "\t- Gender\n";
		
	if (born == "" || born.length < 4)
		errorLine += "\t- 4-Digit Year of Birth\n";
		
	if (city == "")
		errorLine += "\t- City\n";
		
	if (currState == "")
		errorLine += "\t- State / Province\n";
	
	if (zipcode == "")
		errorLine += "\t- Zip Code\n";
		
	if (currCountry == "")
		errorLine += "\t- Country\n";
	
	if (email == "" || !validEmail(email))
		errorLine += "\t- Valid Email Address\n";
	
	if (purchased == "")
		errorLine += "\t- Purchase Date\n";
		
	if (currSport == "")
		errorLine += "\t- Product Sport\n";
	
	if (currType == "")
		errorLine += "\t- Product Type\n";
	
	if (currSeries == "")
		errorLine += "\t- Product Series\n";

	if (currProduct == "")
		errorLine += "\t- Product\n";
	
	if (currCategory == "")
		errorLine += "\t- Question #1\n";
		
	if (currUse == "")
		errorLine += "\t- Question #2\n";
	
	if (currHear == "")
		errorLine += "\t- Question #3\n";
	
	if (currReason == "")
		errorLine += "\t- Question #4\n";

	if (!sportsUse)
		errorLine += "\t- Question #5\n";

	if (!sportsPlay)
		errorLine += "\t- Question #6\n";
		
	if (errorLine == "")
		return true;
		
	else
	{
		alert("You Are Missing The Following Fields:\n" + errorLine);
		return false;
	}
}
