	// define buildUp Methods for StandAloneElements
	function createLine(){
		myLine = new clsObject("OrderBody")
			myLine.LinePos						=	xmlOHeader.childNodes.length;
			myLine.ProductNo					=	"";
			myLine.Name							=	"";
			myLine.Description					=	"";
			myLine.PriceUserEntry				=	"";
			myLine.PriceUnit					=	"1";
			myLine.MinOrder						=	"1";
			myLine.QuantityUnit					=	"";
			myLine.QuantityAmount				=	"1";
			myLine.TaxClass						=	"0";
			myLine.TaxRate						=	"0";
			myLine.TaxAmountLineTotalLC			=	"0";
			myLine.TaxAmountLineTotalSC			=	"0";
			myLine.DiscountRate					=	"0";
			myLine.DiscountNetSingleUnitLC		=	"0";
			myLine.DiscountGrossSingleUnitLC	=	"0";
			myLine.DiscountNetLineTotalLC		=	"0";
			myLine.DiscountGrossLineTotalLC		=	"0";
			myLine.DiscountNetSingleUnitSC		=	"0";
			myLine.DiscountGrossSingleUnitSC	=	"0";
			myLine.DiscountNetLineTotalSC		=	"0";
			myLine.DiscountGrossLineTotalSC		=	"0";
			myLine.PriceNetSingleUnitLC			=	"0";
			myLine.PriceGrossSingleUnitLC		=	"0";
			myLine.PriceNetLineTotalLC			=	"0";
			myLine.PriceGrossLineTotalLC		=	"0";
			myLine.PriceNetSingleUnitSC			=	"0";
			myLine.PriceGrossSingleUnitSC		=	"0";
			myLine.PriceNetLineTotalSC			=	"0";
			myLine.PriceGrossLineTotalSC		=	"0";
			myLine.WeightUnit					=	"";
			myLine.WeightAmountSingleUnit		=	"0";
			myLine.WeightAmountLineTotal		=	"0";
			// remove
			myLine.addNode("Internal");
	// return Line-Object to Caller
	return myLine;
	};
// 
	function addToBag(anElement,Amount){
		with(this){
			var taxamount = taxarea[parseInt(xmlConfig.taxarea)][parseInt(anElement.Tax) + 1];
			var update = -1;
			myLines = xmlOHeader.childNodes
			for(var i=0;i<myLines.length;i++){
				if(myLines[i].ProductNo==anElement.Prod_nr){
					update = i;
					break;
					};
				};
			// product already in shoppingcard
			if(update>-1){
				// detect position of prod_nr in shoppingcart
				myLines[i].QuantityAmount = Amount;
				if(boolPriceTaxIncl){
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount * ( 1 - taxamount/( 100 + taxamount ));
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount;
					}
				else{
					myLines[i].PriceNetLineTotalLC = anElement.Price * Amount;
					myLines[i].PriceGrossLineTotalLC = anElement.Price * Amount * ( 1 + taxamount/100 );
					};
				}
			// add product to shoppingcart
			else{
				myLine = createLine();
				myLine.ProductNo = anElement.Prod_nr;
				myLine.Name = anElement.Title;
				myLine.Description = anElement.Subtitle;
				myLine.QuantityAmount = Amount;
				myLine.QuantityUnit = anElement.Unitdesc;
				myInternal = myLine.getFirstItem("Internal")
					myInternal.price = anElement.Price;
					myInternal.address = anElement.LnkAdress;
					myInternal.navIndex = anElement.NavIndex;
					myInternal.discount = anElement.Discount;
					myInternal.minOrder = anElement.Minorder;
					myInternal.variants = anElement.Variants;
					myInternal.catDiscount = anElement.catDiscount;
				
				myLine.WeightAmountSingleUnit = parseFloat(anElement.Weight);
				myLine.WeightAmountLineTotal = parseFloat(anElement.Weight) * parseInt(Amount);
				
				myLine.TaxClass = anElement.Tax;
				myLine.TaxRate = taxamount;
				
				myLine.PriceUnit = anElement.PriceUnit;
				
				if(boolPriceTaxIncl){
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 - taxamount/( 100 + taxamount ) );
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					}
				else{
					myLine.PriceNetSingleUnitLC = parseFloat(anElement.Price);
					myLine.PriceNetLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount);
					myLine.PriceGrossSingleUnitLC = parseFloat(anElement.Price) * ( 1 + taxamount/100 );
					myLine.PriceGrossLineTotalLC = parseFloat(anElement.Price) * parseInt(Amount) * ( 1 + taxamount/100 );
					};
				myLines[myLines.length] = myLine;
				};
			safeData();
			var dummyQueryString = "";
			if(Element){
				dummyQueryString += "productId=" + anElement.Prod_No + "&quantity=" + Amount;
				};
			location.href="orderform.htm?" + dummyQueryString;
			};
		};
// ** 1105
	function TElementPrint(){
		var boolDisplArtId = "true";
		var variants, variantString = "";
		variants = this.Variants.split("@");
		for(var i=0; i<variants.length - 1; i++){
			variantString += "search" + i + "_EQ_" + variants[i].split(";")[1] + "_AND_"; 
			};
		variantString += "{EOL}";
		
		var addToBag = '<img src="assets/images/btnaddtobag.gif" width="83" height="24" alt="Note item" border="0" align="bottom" hspace="0" vspace="0" class="main">';
		var rString = '<TR><TD align="right" class="PROVIEWBODY">';
		if(this.Image!=""){
			if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">";
			rString += "<img src='" + this.Image + "' border=0";
			if(this.Width!=0) rString += " width=" + this.Width;
			if(this.Height!=0) rString += " height=" + this.Height;
			rString += " align=\"top\">";
			if(this.LnkAdress!="#DROP#") rString += "</a>";
			};
		
		rString += '</TD><TD class="PROVIEWBODY" valign="top" width="100%"><TABLE border="0" cellpadding="1" cellspacing="0" width="100%">';
		if(boolDisplArtId) rString += '<TR><TD class="PROVIEWARTID">' + this.Prod_nr + "</TD></TR>";
		rString += "<TR><TD class=\"PROVIEWBEZ1\">"
		if(this.LnkAdress!="#DROP#") rString += "<a href=\"" + this.LnkAdress + "?defaultVariants=" + variantString + "&categoryId=" + this.NavIndex + "\">"
		rString += this.Title;
		if(this.LnkAdress!="#DROP#") rString += "</a>";
		rString += "</TD></TR>"
			+ "<TR><TD class=\"PROVIEWBEZ2\">" + this.Subtitle;
		if(variants.length>0) rString += "<br>";
		for(var i=0; i<variants.length - 1; i++){
			rString	+= "<nobr><strong>" + variants[i].split(";")[0] + ": " + variants[i].split(";")[1] + "</strong>"
			if(i<variants.length-2) rString += ", ";
			rString += "</nobr>";
			};
		rString += "</TD></TR>";
		if(this.displMode==0||this.displMode==2){
			rString	+= "<TR><TD>";
			rString += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
			if(this.catDiscount==0){
				rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
				rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
				if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
				rString += "</td></tr>";
				}
			else{
				if(this.Discount==""||this.Discount=="{EOL}"){
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Before:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICESTROKEN\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					rString += "</td>"
					rString += "</tr>";
					rString += "<tr valign=\"top\">";
					rString += "<td nowrap>Now only:&nbsp;</td>";
					rString += "<td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price * (1 - this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price - ( this.Price * this.catDiscount / 100 ),this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td>"
					rString += "</tr>";
					}
				else{
					rString += "<tr valign=\"top\"><td class=\"PROVIEWPRICE\" nowrap>";
					rString += TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objPriCurrency);
					if(boolDisplSecCurr) rString += charSecCurrDelimiter + TFormatCurrency(displPrice(this.Price,this.Tax) / this.PriceUnit, objSecCurrency);
					rString += "</td></tr>";
					};
				};
			rString += "</table>";
			rString += "</TD></TR>";
			}
		else if(this.displMode==3){
			rString	+= "<TR><TD class=\"PROVIEWPRICE\" nowrap>";
			rString += "Price on demand";
			rString += "</TD></TR>";
			};
		if(this.displMode==0){
			rString += "<TR><TD>&nbsp;</TD></TR>"
				+ "<TR><TD><a href=\"JavaScript:addToBag(Entry[" + this.Index + "]," + this.Minorder + ");\">" + addToBag + "</a></TD></TR>";
			};
		rString += "<TR><TD>&nbsp;</TD></TR>"
			+ "</TABLE>"
			+ "</td></tr>";
		return(rString);
		};
// ** 1106
	function Element(Index,Image,Width,Height,Prod_nr,Title,Subtitle,Manufac,Price,Weight,Tax,PriceUnit,Unitdesc,NavIndex,Options,LnkAdress,Discount,Minorder,Category,catDiscount,displMode){
		this.Index = Index;
		this.Image = Image;this.Width = Width;
		this.Height = Height;this.Prod_nr = Prod_nr;
		this.Title = Title;this.Subtitle = Subtitle;
		this.Manufac = Manufac;this.Price = Price;
		this.Weight = Weight;this.Tax = Tax;
		this.PriceUnit = PriceUnit;this.Unitdesc = Unitdesc;
		this.NavIndex = NavIndex;
		this.Print = TElementPrint;this.Variants = Options;
		this.LnkAdress = LnkAdress;this.Discount = Discount;
		this.Minorder = Minorder;this.Category = Category;
		this.catDiscount = catDiscount;
		this.displMode = displMode;
		};
// ** 1107
	var Entry = new Array();
// ** 1108
	
		Entry[0] = new Element(
		0, "assets/thumb/tn_DSCF0046.jpg",
		145, 150,
		"NBC-BGL", "British NBC Gloves and Cotton Liners",
		"", "",
		"6.5", "0.3",
		"1", 1,
		"Pieces", "96",
		"Size;L@", "pd-2086382076.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/tn_DSCF0063.jpg",
		200, 121,
		"NBC-BOB", "British NBC Overboots",
		"NBC Rubber overboots", "",
		"14.95", "0.7",
		"1", 1,
		"Pieces", "96",
		"", "pd-907494446.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/tn_DSCF0075.jpg",
		187, 150,
		"NBC-GOB", "German NBC Overboots",
		"Rubber NBC overboots", "",
		"9.95", "0.9",
		"1", 1,
		"Pieces", "96",
		"", "pd-1345909168.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/tn_DSCF0047.jpg",
		139, 150,
		"NBC-58", "&rsquo;58 water bottle with drinking tube connector",
		"&rsquo;58 pattern waterbottle with connector for use with S10 respirator", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "96",
		"", "pd-1520575234.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/tn_DSCF0062.jpg",
		200, 138,
		"NBC-DP", "British NBC Chemical Detector Paper",
		"Chemical Detector paper - current British issue", "",
		"14.5", "0.1",
		"1", 1,
		"Pieces", "96",
		"", "pd1760490698.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/tn_DSCF0057.jpg",
		192, 150,
		"NBC-DECON", "British NBC Decontamination Pads",
		"Decontamination kit No.1 Mk.1", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd-1454059512.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/tn_DSCF0065.jpg",
		119, 150,
		"NBC-DPB", "British NBC Decontamination puffer bottle",
		"Decontamination Kit No.2 Mk.1", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd1045497777.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/tn_facelet.jpg",
		178, 150,
		"NBC-FACE", "British NBC facelet mask L1A1",
		"Facelet mask, dust protection", "",
		"3.5", "0.1",
		"1", 1,
		"Pieces", "96",
		"", "pd-597728317.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/images/nopicture.gif",
		55, 38,
		"NBC-EMERG", "Emergency escape hood",
		"Emergency escape hood", "",
		"149.95", "1",
		"1", 1,
		"Pieces", "96",
		"", "pd1045498750.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/images/nopicture.gif",
		55, 38,
		"NBC-HAND", "Chem Bio Handbook",
		"Jane&rsquo;s Chem Bio information book", "",
		"35", "0.3",
		"1", 1,
		"Pieces", "96",
		"", "pd-1085467172.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/images/nopicture.gif",
		55, 38,
		"NBC-FRPS", "First Responders Pack Standard",
		"NBC Emergency pack", "",
		"269.95", "0.8",
		"1", 1,
		"Pieces", "96",
		"", "pd779870058.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/images/nopicture.gif",
		55, 38,
		"NBC-FRPA", "First Responders Pack Advanced",
		"NBC Emergency pack - everything you could possibly need", "",
		"349.95", "10",
		"1", 1,
		"Pieces", "96",
		"", "pd-1692255320.htm",
		"", 1,
		"NBC", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/tn_cat-bw.jpg",
		165, 150,
		"CAT-BW", "Black Widow",
		"Black Widow catapult", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "50",
		"", "pd1045500657.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/tn_cat-cb.jpg",
		200, 92,
		"CAT-CB", "Barnett Cobra",
		"Cobra Catapult", "",
		"15.95", "0.3",
		"1", 1,
		"Pieces", "50",
		"", "pd1594545799.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/tn_cat-db.jpg",
		200, 130,
		"CAT-DB", "Barnett Diablo",
		"Diablo slingshot", "",
		"18.95", "0.3",
		"1", 1,
		"Pieces", "50",
		"", "pd42195981.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/tn_cat-pd.jpg",
		200, 121,
		"CAT-PD", "Barnett Pro Diablo",
		"Pro Diablo catapult", "",
		"25.95", "0.3",
		"1", 1,
		"Pieces", "50",
		"", "pd-297290493.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/tn_cat-lh.jpg",
		99, 150,
		"CAT-LH", "Laserhawk 3030",
		"Laserhawk 3030 Catapult", "",
		"8.95", "0.2",
		"1", 1,
		"Pieces", "50",
		"", "pd509759209.htm",
		"", 1,
		"CAT", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/tn_mini-ak47.jpg",
		200, 107,
		"MINI-AK47", "Mini electric AK47",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd652867383.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/tn_mini-aug.jpg",
		200, 117,
		"MINI-AUG", "Mini electric Steyr AUG",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd-1504400323.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/tn_mini-augt.jpg",
		200, 113,
		"MINI-AUGT", "Mini electric Steyr AUG - Translucent version!!!",
		"Mini charicature airsoft gun", "",
		"29.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd363839667.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/tn_mini-g3a3.jpg",
		200, 111,
		"MINI-G3", "Mini electric H&amp;K G3A3",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd-1707998695.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/tn_mini-m16.jpg",
		200, 113,
		"MINI-M16", "Mini electric Colt M16",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd1224014319.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/tn_mini-mp5.jpg",
		200, 126,
		"MINI-MP5", "Mini electric H&amp;K MP5",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd-920433227.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/images/nopicture.gif",
		55, 38,
		"MINI-SIG550", "Mini electric Sig 550",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd-1890705685.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/tn_mini-xm177.jpg",
		200, 111,
		"MINI-XM177", "Mini electric Colt XM177",
		"Mini charicature airsoft gun", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "91",
		"", "pd306277137.htm",
		"", 1,
		"MINI", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/tn_nbb-as-mp40.jpg",
		200, 79,
		"REP-MP40", "Asahi MP40 - one only!",
		"Asahi MP40 airsoft replica", "",
		"550", "4.3",
		"1", 1,
		"Pieces", "104",
		"", "pd-1318098009.htm",
		"", 1,
		"REP", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/tn_broom.jpg",
		200, 121,
		"REP-BROOM", "Replica Broomhandle Mauser",
		"Broomhandle Mauser Replica", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "104",
		"", "pd583726637.htm",
		"", 1,
		"REP", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/tn_DSCF0007.jpg",
		200, 137,
		"REP-LUG", "Replica Luger Mod. P08",
		"Luger Mod. P08", "",
		"65", "0.9",
		"1", 1,
		"Pieces", "104",
		"", "pd-1851204573.htm",
		"", 1,
		"REP", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/tn_DSCF0020.jpg",
		200, 118,
		"REP-1911", "Replica Colt 1911 .45",
		"Colt 1911 .45 replica", "",
		"65", "1",
		"1", 1,
		"Pieces", "104",
		"", "pd455224415.htm",
		"", 1,
		"REP", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/tn_aeg-tm-ak47.jpg",
		200, 68,
		"AEG-TM-AK47", "Tokyo Marui AK47",
		"AK47 Electric Airsoft rifle", "",
		"250", "2.8",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045661915.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/tn_aeg-tm-ak47s.jpg",
		200, 66,
		"AEG-TM-AK47S", "Tokyo Marui AK47S",
		"AK47S Electric Airsoft rifle", "",
		"250", "2.7",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-69294463.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/tn_aeg-tm-ak47bs.jpg",
		200, 62,
		"AEG-TM-AKB", "Tokyo Marui AK47 Beita Spetsnaz",
		"AK47 Beita Spetsnaz electric airsoft gun", "",
		"250", "2.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-67185513.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/tn_aeg-tm-augm.jpg",
		200, 75,
		"AEG-TM-AUGM", "Tokyo Marui Steyr AUG Military",
		"Steyr AUG Military electric airsoft rifle", "",
		"260", "3.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-2044835683.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/tn_newaeg0011.jpg",
		200, 91,
		"AEG-TM-AUGRT", "Tokyo Marui Steyr AUG RT",
		"Steyr AUG RT electric airsoft rifle", "",
		"255", "3.4",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-2057817069.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/tn_aeg-tm-car15.jpg",
		200, 67,
		"AEG-TM-CAR15", "Tokyo Marui Colt CAR-15",
		"CAR-15 Electric Airsoft rifle", "",
		"240", "2.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd5317753.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/tn_newaeg0006.jpg",
		200, 86,
		"AEG-TM-FAMASF1", "Tokyo Marui FAMAS F1",
		"FAMAS F1 electric Airsoft rifle", "",
		"225", "2.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-1975098545.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/tn_aeg-tm-famassv.jpg",
		200, 75,
		"AEG-TM-FAMASSV", "Tokyo Marui FAMAS SV",
		"French FAMAS SV electric airsoft rifle", "",
		"225", "2.8",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1277974037.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/tn_newaeg0009.jpg",
		200, 104,
		"AEG-TM-G36C", "Tokyo Marui H&amp;K G36C",
		"H&amp;K G36C electric airsoft rifle", "",
		"250", "2.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045668708.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/tn_aeg-tm-g3a3.jpg",
		200, 50,
		"AEG-TM-G3A3", "Tokyo Marui H&amp;K G3A3",
		"H&amp;K G3A3 electric airsoft rifle", "",
		"255", "3.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1418872882.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/tn_newaeg0007.jpg",
		200, 84,
		"AEG-TM-G3A4", "Tokyo Marui G3A4",
		"H&amp;K G3A4 electric rifle", "",
		"250", "3",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-149884496.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/tn_newaeg0004.jpg",
		200, 81,
		"AEG-TM-G3SG1", "Tokyo Marui G3 SG-1",
		"H&amp;K G3 SG-1 electric airsoft rifle", "",
		"275", "3.2",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd867954526.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/tn_newaeg0001.jpg",
		200, 88,
		"AEG-TM-M16A1", "Tokyo Marui Colt M16A1",
		"Colt M16A1 electric rifle", "",
		"250", "2.8",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-953803588.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/tn_aeg-tm-m16a2.jpg",
		200, 58,
		"AEG-TM-M16A2", "Tokyo Marui Colt M16A2",
		"Colt M16A2 electric airsoft rifle", "",
		"255", "3.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045839799.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/tn_aeg-tm-m16vn.jpg",
		200, 51,
		"AEG-TM-M16VN", "Tokyo Marui Colt M16 Vietnam",
		"Colt M16 Vietnam Electric airsoft rifle", "",
		"255", "3",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1445734589.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/tn_aeg-tm-m1a1.jpg",
		200, 69,
		"AEG-TM-M1A1", "Tokyo Marui Thompson M1A1",
		"Thompson M1A1 electric airsoft rifle", "",
		"265", "3.7",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd506827059.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/tn_tm-m4a1.jpg",
		200, 87,
		"AEG-TM-M4A1", "Tokyo Marui Colt M4A1",
		"Colt M4A1 electric airsoft rifle", "",
		"255", "3.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-35764583.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/tn_aeg-tm-m4ris.jpg",
		200, 75,
		"AEG-TM-M4RIS", "Tokyo Marui Colt M4 R.I.S",
		"Colt M4 R.I.S electric airsoft rifle", "",
		"295", "3.3",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1266471535.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/tn_aeg-tm-sr16.jpg",
		200, 66,
		"AEG-TM-SR16", "Tokyo Marui Knights Armaments SR16",
		"Knights Armaments SR16 electric airsoft rifle", "",
		"295", "3.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd633395765.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/tn_aeg-tm-mc51.jpg",
		200, 73,
		"AEG-TM-MC51", "Tokyo Marui H&amp;K MC51",
		"H&amp;K MC51 electric airsoft rifle", "",
		"250", "2.6",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045922308.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/tn_aeg-tm-mp5a4.jpg",
		200, 83,
		"AEG-TM-MP5A4", "Tokyo Marui H&amp;K MP5A4",
		"H&amp;K MP5A4 electric airsoft rifle", "",
		"250", "2.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-2030057518.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/tn_aeg-tm-mp5a5.jpg",
		200, 98,
		"AEG-TM-MP5A5", "Tokyo Marui H&amp;K MP5A5",
		"H&amp;K MP5A5 electric airsoft rifle", "",
		"250", "2.2",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-1453000112.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/tn_aeg-tm-mp5sd5.jpg",
		200, 72,
		"AEG-TM-MP5SD5", "Tokyo Marui H&amp;K MP5SD5",
		"H&amp;K MP5SD5 electric airsoft rifle", "",
		"250", "2.4",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-832722690.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/images/nopicture.gif",
		55, 38,
		"AEG-TM-MP5SD6", "Tokyo Marui H&amp;K MP5SD6",
		"H&amp;K MP5SD6 electric airsoft rifle", "",
		"250", "2.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045923689.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/tn_tm-mp5k.jpg",
		200, 124,
		"AEG-TM-MP5K", "Tokyo Marui H&amp;K MP5K",
		"H&amp;K MP5K electric airsoft rifle", "",
		"225", "1.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1284587455.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/tn_newgbb0013.jpg",
		200, 93,
		"AEG-TM-MP5KPDW", "Tokyo Marui H&amp;K MP5K PDW",
		"H&amp;K MP5K PDW electric airsoft rifle", "",
		"230", "2.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-1232713723.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/tn_aeg-tm-p90.jpg",
		200, 88,
		"AEG-TM-P90", "Tokyo Marui FN P90",
		"FN P90 electric airsoft rifle", "",
		"295", "2.6",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1045925082.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/tn_aeg-tm-p90tr.jpg",
		200, 63,
		"AEG-TM-P90TR", "Tokyo Marui FN P90 Tri Rail",
		"FN P90 TR electric airsoft rifle", "",
		"295", "2.3",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-1147312488.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/tn_PSG1.JPG",
		200, 71,
		"AEG-TM-PSG1", "Tokyo Marui H&amp;K PSG-1",
		"H&amp;K PSG-1 electric airsoft rifle", "",
		"425", "4.5",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1415319174.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/tn_sig_airsoft.jpg",
		200, 70,
		"AEG-TM-SG550", "Tokyo Marui Sig 550",
		"Sig 550 electric airsoft rifle", "",
		"265", "2.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd178450468.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/images/nopicture.gif",
		55, 38,
		"AEG-TM-551", "Tokyo Marui Sig 551",
		"Sig 551 electric airsoft rifle", "",
		"255", "2.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd-1597152526.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/images/nopicture.gif",
		55, 38,
		"AEG-TM-XM177", "Tokyo Marui Colt XM177E2",
		"Colt XM177E2 electric airsoft rifle", "",
		"230", "2.1",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd546605680.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/tn_aeg-tm-uzi.jpg",
		200, 78,
		"AEG-TM-UZI", "Tokyo Marui I.M.I Uzi",
		"I.M.I Uzi electric airsoft rifle", "",
		"250", "1.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd603207198.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/tn_catalog.jpg",
		187, 150,
		"CATA-RW", "Stringtown Supplies Replica Weaponry catalogue",
		"Our catalogue detailing knives, air rifles, air pistols, airsoft, co2 guns and more!", "",
		"1", "0.1",
		"1", 1,
		"Pieces", "49",
		"", "pd-1940405114.htm",
		"", 1,
		"CATA", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/tn_catalog.jpg",
		187, 150,
		"CATA-MS", "Stringtown Supplies Military and Survival catalogue",
		"Our catalogue listing all of our Military and Survival items", "",
		"1", "0.1",
		"1", 1,
		"Pieces", "49",
		"", "pd-1457678812.htm",
		"", 1,
		"CATA", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/tn_blackhawk.jpg",
		126, 150,
		"CATA-BHI", "Blackhawk Industries catalogue",
		"The Blackhawk Industries catalogue, over 110 pages long, detailing all of their equipment", "",
		"3.5", "0.1",
		"1", 1,
		"Pieces", "49",
		"", "pd-677349134.htm",
		"", 1,
		"CATA", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/tn_swordcatalogue.jpg",
		200, 150,
		"CATA-SW", "Stringtown Supplies swords catalogue",
		"Our catalogue, listing our comprehensive range of swords", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "49",
		"", "pd724930672.htm",
		"", 1,
		"CATA", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/tn_catalog.jpg",
		187, 150,
		"CATA-LEAF", "Full range of Stringtown Supplies leaflets",
		"The full range of Stringtown leaflets! NBC, Deactivated Guns and Badge leaflets.", "",
		"1", "0.05",
		"1", 1,
		"Pieces", "49",
		"", "pd1356114974.htm",
		"", 1,
		"CATA", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/tn_dct-ns-ak47bul.jpg",
		200, 66,
		"DCTR-AK47B", "Deactivated AK47",
		"Deactivated AK47", "",
		"350", "3",
		"1", 1,
		"Pieces", "58",
		"Type;Bulgarian AK47@", "pd1046084981.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/tn_dct-ns-g3a3.jpg",
		200, 52,
		"DCTR-G3A3", "H&amp;K Licenced G3A3 rifle",
		"Deactivated H&amp;K Licenced G3A3 rifle", "",
		"395", "3.8",
		"1", 1,
		"Pieces", "58",
		"", "pd-1628744533.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/tn_dct-ns-m1c.jpg",
		200, 49,
		"DCTR-M1C", "Deactivated M1 Carbine",
		"Deactivated M1 Carbine", "",
		"350", "2.5",
		"1", 1,
		"Pieces", "58",
		"Condition;1944 dated, used condition@", "pd1241552593.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/tn_dct-ns-mini14.jpg",
		200, 50,
		"DCTR-RM14", "Ruger Mini 14 rifle",
		"Deactivated Ruger Mini 14 rifle", "",
		"350", "3.6",
		"1", 1,
		"Pieces", "58",
		"", "pd1912852674.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/tn_dct-ns-sa80is.jpg",
		200, 79,
		"DCTR-SA80NS", "Enfield SA80 w/ Iron Sights",
		"Deactivated Enfield SA80 w/ Iron Sights", "",
		"995", "3.9",
		"1", 1,
		"Pieces", "58",
		"", "pd1477157102.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/tn_dct-ns-slrpls.jpg",
		200, 47,
		"DCTR-SLRPS", "Deactivated L1A1 SLR w/ Plastic Furniture old &amp; new specs",
		"Deactivated L1A1 SLR w/ Plastic Furniture old &amp; new specs", "",
		"395", "4",
		"1", 1,
		"Pieces", "58",
		"Spec;New spec@", "pd-144007802.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/tn_dct-ns-slrwd.jpg",
		200, 44,
		"DCTR-SLRWD", "L1A1 SLR Wood furniture",
		"Deactivated L1A1 SLR Wood furniture", "",
		"395", "4",
		"1", 1,
		"Pieces", "58",
		"", "pd1046089731.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/tn_dct-os-ar15.jpg",
		200, 51,
		"DCTR-AR15", "Colt AR15 old spec",
		"Deactivated Colt AR15 old spec", "",
		"1695", "3.3",
		"1", 1,
		"Pieces", "58",
		"", "pd1046091506.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/tn_enfield.JPG",
		200, 75,
		"DCTR-ENF", "Enfield No.4 .303",
		"Deactivated Enfield No.4 .303", "",
		"265", "4.3",
		"1", 1,
		"Pieces", "58",
		"", "pd-312668759.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/tn_dct-os-enf.jpg",
		200, 43,
		"DCTR-P14", "P14 rifle",
		"Deactivated P14 rifle", "",
		"245", "4.4",
		"1", 1,
		"Pieces", "58",
		"", "pd1428362129.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/tn_k98.JPG",
		200, 60,
		"DCTR-K98", "Mauser K98",
		"Deactivated Mauser K98", "",
		"225", "4.2",
		"1", 1,
		"Pieces", "58",
		"", "pd-2093266905.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/tn_ausslr.JPG",
		200, 69,
		"DCTR-AUSLR", "Australian SLR Support weapon",
		"Deactivated Australian SLR Support weapon", "",
		"395", "5.2",
		"1", 1,
		"Pieces", "58",
		"", "pd1649377443.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/tn_aug.JPG",
		200, 88,
		"DCTR-AUG", "Steyr AUG",
		"Deactivated Steyr AUG", "",
		"1295", "3.5",
		"1", 1,
		"Pieces", "58",
		"", "pd-947289207.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/tn_DSCF0010.jpg",
		200, 134,
		"BF-HW94", "Beretta HW94S 9mm",
		"Beretta HW94S 9mm", "",
		"169", "0.8",
		"1", 1,
		"Pieces", "34",
		"Color;Black@", "pd665998780.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/images/nopicture.gif",
		55, 38,
		"BF-BR9", "Browning BR9",
		"9mm Blankfirer", "",
		"89.95", "0.8",
		"1", 1,
		"Pieces", "34",
		"", "pd-1041929376.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/tn_DSCF0018.jpg",
		200, 142,
		"BF-FBI", "FBI Snub .22",
		"FBI Snub .22", "",
		"31.95", "0.4",
		"1", 1,
		"Pieces", "34",
		"Grips;Plastic@", "pd676170637.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/tn_policemagnum.jpg",
		200, 150,
		"BF-POL", "Police Magnum 4&quot;",
		"9mm blankfirer", "",
		"75", "0.9",
		"1", 1,
		"Pieces", "34",
		"", "pd-903743895.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/images/nopicture.gif",
		55, 38,
		"BF-RA25", "Reck Agent 2.5&quot; revolver",
		"9mm blankfirer", "",
		"69", "0.8",
		"1", 1,
		"Pieces", "34",
		"", "pd1413301951.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/tn_DSCF0016.jpg",
		200, 104,
		"BF-PM", "Colt Peacemaker ",
		"9mm blankfirer", "",
		"75", "1",
		"1", 1,
		"Pieces", "34",
		"", "pd1749919493.htm",
		"", 1,
		"BF", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/tn_Deactpistol (1).jpg",
		197, 150,
		"DCTP-A75", "Astra A-75 Firefox .40S&amp;W",
		"Deactivated Astra A-75 Firefox", "",
		"450", "0.9",
		"1", 1,
		"Pieces", "56",
		"", "pd1046340119.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/tn_Deactpistol (10).jpg",
		200, 130,
		"DCTP-LL1911", "Llama 1911A1 .38 Super",
		"Deactivated Llama 1911A1", "",
		"450", "1.1",
		"1", 1,
		"Pieces", "56",
		"", "pd-711323107.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/tn_Deactpistol (11).jpg",
		200, 132,
		"DCTP-HPMK1", "Browning Hi-Power MK.1 9mm",
		"Browning Hi-Power MK.1 9mm", "",
		"550", "1",
		"1", 1,
		"Pieces", "56",
		"Markings;Chinese@", "pd1009794660.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/tn_Deactpistol (12).jpg",
		200, 127,
		"DCTP-HPMK2", "Browning Hi-Power MK2",
		"Deactivated Browning Hi-Power ", "",
		"550", "1",
		"1", 1,
		"Pieces", "56",
		"", "pd1003248434.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/tn_Deactpistol (13).jpg",
		200, 131,
		"DCTP-GFL", "Walther German signal flare pistol, WW2 model",
		"Deactivated German flare pistol", "",
		"265", "0.8",
		"1", 1,
		"Pieces", "56",
		"", "pd-2050671440.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/tn_Deactpistol (15).jpg",
		200, 126,
		"DCTP-1911", "Colt 1911A1 .45",
		"Deactivated Colt 1911A1", "",
		"475", "1.1",
		"1", 1,
		"Pieces", "56",
		"", "pd-1324542020.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/tn_Deactpistol (2).jpg",
		200, 135,
		"DCTP-NAM", "Nambu WW2 service pistol",
		"Deactivated Nambu ", "",
		"350", "0.9",
		"1", 1,
		"Pieces", "56",
		"", "pd-988472440.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/tn_Deactpistol (5).jpg",
		200, 138,
		"DCTP-TOK", "Tokarev CCCP automatic",
		"Deactivated Tokarev CCCP", "",
		"395", "1",
		"1", 1,
		"Pieces", "56",
		"", "pd682639049.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/tn_Deactpistol (6).jpg",
		200, 138,
		"DCTP-NOR", "Norinco Model 213 9mm",
		"Deactivated Norinco Model 213", "",
		"275", "1",
		"1", 1,
		"Pieces", "56",
		"", "pd2037007903.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/tn_Deactpistol (7).jpg",
		200, 132,
		"DCTP-PT99", "Taurus PT99AF 9mm",
		"Deactivated Taurus PT99", "",
		"450", "1.1",
		"1", 1,
		"Pieces", "56",
		"", "pd-63687323.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/tn_Deactpistol (8).jpg",
		200, 146,
		"DCTP-STR", "Sturm Ruger P-85 9mm",
		"Deactivated Ruger P-85", "",
		"550", "1.2",
		"1", 1,
		"Pieces", "56",
		"", "pd316804635.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/tn_Deactpistol (9).jpg",
		200, 144,
		"DCTP-TAN", "Tanfoglio TA-90 Baby",
		"Deactivated Tanfoglio TA-90", "",
		"425", "0.9",
		"1", 1,
		"Pieces", "56",
		"", "pd-222450239.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/tn_airrifle (1).jpg",
		200, 53,
		"AR-BSA-LTG", "BSA Lightning .22",
		"Break Barrel Air Rifle", "",
		"189.95", "3.7",
		"1", 1,
		"Pieces", "3",
		"", "pd1046352581.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/tn_akhicap.jpg",
		61, 150,
		"AS-ACC-HC", "Tokyo Marui High-Capacity magazines for Electric rifles",
		"Tokyo Marui High-Capacity magazines for Electric rifles", "",
		"39.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"Gun/Type;AK (600 round)@", "pd-1439323212.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/tn_maruishot.jpg",
		87, 150,
		"AS-ACC-SS", "Tokyo Marui shot shells",
		"Pack of 3, 30 round shot shells", "",
		"19.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd-1494562558.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/tn_tracer.jpg",
		200, 134,
		"AS-ACC-TRACE", "Tokyo Marui Tracer unit",
		"Tracer &amp; Muzzle flash effect add-on", "",
		"99.95", "0.5",
		"1", 1,
		"Pieces", "6",
		"", "pd1842635206.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/tn_m9mag.jpg",
		53, 150,
		"AS-ACC-M9MAG", "Tokyo Marui Beretta M9 magazines",
		"Gas blowback magazine", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "6",
		"", "pd-412156353.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G", "Marui 0.2g 6mm Airsoft ballshot",
		"High quality 6mm BB, bag of 3500", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "6",
		"", "pd11298786.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "6",
		"", "pd816896224.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd-1039865330.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd-1516480788.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd-1097906438.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "6",
		"", "pd-1897910856.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "6",
		"", "pd1832168102.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/images/nopicture.gif",
		55, 38,
		"SPP-TM-8000", "Tokyo Marui Beretta 8000",
		"Beretta 8000 Cougar pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd1050148508.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/tn_spp-tm-m92.jpg",
		200, 135,
		"SPP-TM-92", "Tokyo Marui Beretta 92F",
		"Marui Beretta 92F spring airsoft pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd-1766002103.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/tn_spp-tm-de.jpg",
		200, 122,
		"SPP-TM-DE", "Tokyo Marui Desert Eagle",
		"Marui spring airsoft Desert Eagle", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "19",
		"", "pd-1138481761.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/tn_spp-tm-g17hp.jpg",
		200, 138,
		"SPP-TM-G17", "Tokyo Marui Glock 17",
		"Glock 17 spring airsoft pistol by Marui", "",
		"39.95", "0.6",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd-596318821.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/tn_spp-tm-g17l.jpg",
		200, 113,
		"SPP-TM-G17L", "Tokyo Marui Glock 17L",
		"Marui Glock 17L spring airsoft pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd957709655.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/tn_spp-tm-mk23hp.jpg",
		200, 131,
		"SPP-TM-MK23", "Tokyo Marui H&amp;K MK23",
		"Marui H&amp;K MK23 spring airsoft pistol", "",
		"49.95", "0.8",
		"1", 1,
		"Pieces", "19",
		"", "pd-295690403.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/tn_spp-tm-p7.jpg",
		188, 150,
		"SPP-TM-P7", "Tokyo Marui H&amp;K P7M13",
		"Marui H&amp;K P7M13 spring airsoft pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd341043001.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/tn_spp-tm-usp.jpg",
		200, 141,
		"SPP-TM-USP", "Tokyo Marui H&amp;K USP",
		"Spring Airsoft Marui USP pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd624346325.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/tn_spp-tm-kp85.jpg",
		200, 146,
		"SPP-TM-KP85", "Tokyo Marui Ruger KP85",
		"Ruger KP85 spring airsoft pistol", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd1829999665.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/tn_spp-tm-p228hp.jpg",
		197, 150,
		"SPP-TM-P228", "Tokyo Marui Sig P228",
		"Sig P228 spring airsoft pistol by Marui", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Model;Hop-Up@", "pd1228599629.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd70485760.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd1792787758.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd2146903820.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd-1337781222.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd1290354648.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd1642650980.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1", "Marui 0.2g 6mm Airsoft ballshot",
		"High quality 6mm BB, bag of 3500", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd1372721714.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/tn_ameag.jpg",
		54, 150,
		"AS-ACC-AMEAG-1", "American Eagle gas",
		"APS3 inside, airsoft gas", "",
		"14.95", "0.7",
		"1", 1,
		"Pieces", "25",
		"", "pd84445638.htm",
		"", 1,
		"Gas", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/tn_gas_green.jpg",
		62, 150,
		"AS-ACC-GG-1", "Green Gas",
		"HFC22 high pressure airsoft gas", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "25",
		"", "pd1490835806.htm",
		"", 1,
		"Gas", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/tn_blank.jpg",
		159, 150,
		"BF-8mm", "Tub of 50 8mm blank rounds",
		"Tub of 50 8mm blank rounds", "",
		"14.95", "0.5",
		"1", 1,
		"Pieces", "35",
		"", "pd1046278111.htm",
		"", 1,
		"blanks", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/tn_blank (3).jpg",
		154, 150,
		"BF-9mm", "Tub of 50 9mm (.380) blanks",
		"Tub of 50 9mm (.380) blanks", "",
		"11.95", "0.5",
		"1", 1,
		"Pieces", "35",
		"", "pd-1802111707.htm",
		"", 1,
		"blanks", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/tn_blank (4).jpg",
		173, 150,
		"BF-22S", "Tub of 100 .22 short blanks",
		"Tub of 100 .22 short blanks", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "35",
		"", "pd519629185.htm",
		"", 1,
		"blanks", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/tn_Scott.jpg",
		199, 153,
		"NBC-M98", "Scott M98 respirator &amp; bottle",
		"High quality civilian Gas Mask", "",
		"195", "2",
		"1", 1,
		"Pieces", "97",
		"", "pd-1527943681.htm",
		"", 1,
		"GMASKS", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/tn_DSCF0029.jpg",
		180, 150,
		"NBC-S10S", "British S10 respirator - Supergrade",
		"", "",
		"95", "0.9",
		"1", 1,
		"Pieces", "97",
		"Size;L@", "pd-1225109806.htm",
		"", 1,
		"GMASKS", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/tn_DSCF0058.jpg",
		141, 150,
		"NBC-S10N", "British S10 Respirator - New condition",
		"", "",
		"195", "0.9",
		"1", 1,
		"Pieces", "97",
		"Size;L@", "pd-680759036.htm",
		"", 1,
		"GMASKS", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/tn_DSCF0029.jpg",
		180, 150,
		"NBC-S10G", "British S10 respirator - Grade 1",
		"", "",
		"65", "0.9",
		"1", 1,
		"Pieces", "97",
		"Size;L@", "pd-1507927728.htm",
		"", 1,
		"GMASKS", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/tn_DSCF0009.jpg",
		90, 150,
		"NBC-IS", "Israeli NBC suit",
		"", "",
		"225", "2",
		"1", 1,
		"Pieces", "98",
		"Size;L@", "pd2080823623.htm",
		"", 1,
		"NBCSUI", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/tn_DSCF0077.jpg",
		168, 150,
		"NBC-OGMK4", "British NBC Suits, MKIV, sealed, olive green",
		"British NBC Suits, MKIV, sealed, olive green", "",
		"55", "1",
		"1", 1,
		"Pieces", "98",
		"Size;L@", "pd1971540365.htm",
		"", 1,
		"NBCSUI", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/tn_DSCF0077.jpg",
		168, 150,
		"NBC-MK3OG", "British NBC Suit, Mk3, olive green",
		"British NBC Suit, Mk3, olive green", "",
		"35", "1",
		"1", 1,
		"Pieces", "98",
		"Size;S@", "pd1323132820.htm",
		"", 1,
		"NBCSUI", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/tn_DSCF0077.jpg",
		168, 150,
		"NBC-MKIV", "British MKIV No.1 NBC Suit in DPM or Olive",
		"", "",
		"45", "2",
		"1", 1,
		"Pieces", "98",
		"Size;L@", "pd1045496892.htm",
		"", 1,
		"NBCSUI", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/tn_DSCF0053.jpg",
		156, 150,
		"NBC-AXP", "AXP3 grey Industrial filter, wrapped",
		"Dust protection filter", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd-685397098.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/tn_DSCF0051.jpg",
		141, 150,
		"NBC-ABEPK", "ABEPK high protection filter",
		"High protection industrial filter with added Ammonia protection", "",
		"29.95", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd-1299620762.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/tn_DSCF0049.jpg",
		144, 150,
		"NBC-ABEP", "ABEP high protection filter",
		"High protection industrial filter", "",
		"25", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd1045494136.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/tn_DSCF0054.jpg",
		139, 150,
		"NBC-FBRU", "British respirator unsealed metal filter",
		"Current issue British Army filter", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd-1697955544.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/tn_DSCF0054.jpg",
		139, 150,
		"NBC-FS10PU", "British S10/S6 metal filter, unsealed",
		"Current issue British Army filter", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd-855324438.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/tn_DSCF0048.jpg",
		132, 150,
		"NBC-FS10PS", "British S10/S6 plastic filter - vacuum sealed",
		"Current issue British Army plastic filter", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "99",
		"", "pd1438401372.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/tn_DSCF0050.jpg",
		150, 150,
		"NBC-ISC", "Israeli NBC filter",
		"Israeli made IDF filter", "",
		"39.95", "0.2",
		"1", 1,
		"Pieces", "99",
		"", "pd1498586317.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/tn_scott filter.jpg",
		199, 216,
		"NBC-CAN", "Scott NBC Filter Canister",
		"Civilian NBC filter", "",
		"29.95", "0.2",
		"1", 1,
		"Pieces", "99",
		"", "pd-1804656571.htm",
		"", 1,
		"RESSIEF", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/tn_safegl.jpg",
		140, 150,
		"AS-ACC-GOG", "Safety Glasses",
		"Safety Glasses", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "8",
		"Color;Amber@", "pd-433629224.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/tn_mask111.jpg",
		200, 221,
		"AS-ACC-WINMSK", "Winchester paintball/airsoft mask",
		"Protective full-face mask made by Winchester", "",
		"35", "1",
		"1", 1,
		"Pieces", "8",
		"", "pd840343296.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/tn_lrgbat.jpg",
		139, 150,
		"AS-ACC-LRGBAT", "Large Battery for electric airsoft guns",
		"Large-type connector battery", "",
		"35", "0.3",
		"1", 1,
		"Pieces", "7",
		"", "pd-439653838.htm",
		"", 1,
		"BAAT", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/tn_minbat.jpg",
		200, 69,
		"AS-ACC-MINBAT", "Mini type battery for electric airsoft guns",
		"Mini type connector battery", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "7",
		"", "pd299577694.htm",
		"", 1,
		"BAAT", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/tn_stkbat.jpg",
		200, 110,
		"AS-ACC-STKBAT", "Stick type battery for electric airsoft guns",
		"Mini type connector battery in stick configuration", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "7",
		"", "pd892789680.htm",
		"", 1,
		"BAAT", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/tn_charger.jpg",
		144, 150,
		"AS-ACC-CHARG", "Charger for electric airsoft batteries",
		"Charger for electric airsoft batteries", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "7",
		"Connector type;Large@", "pd-1942437399.htm",
		"", 1,
		"BAAT", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/tn_ameag.jpg",
		54, 150,
		"AS-ACC-AMEAG", "American Eagle gas",
		"APS3 inside, airsoft gas", "",
		"14.95", "0.7",
		"1", 1,
		"Pieces", "9",
		"", "pd1677227364.htm",
		"", 1,
		"GASSS", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/tn_gas_green.jpg",
		62, 150,
		"AS-ACC-GG", "Green Gas",
		"HFC22 high pressure airsoft gas", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "9",
		"", "pd-1908552784.htm",
		"", 1,
		"GASSS", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/tn_cat-ammo2.jpg",
		200, 127,
		"CAT-AMMO2", "High Tech Polymer slingshot ammo",
		"Slingshot/Catapult ammo", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "51",
		"", "pd-1282898043.htm",
		"", 1,
		"CATAMM", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/tn_Deactpistol.jpg",
		165, 150,
		"DCTP-NAG", "Nagant service revolver",
		"Deactivated Nagant service revolver", "",
		"225", "1.3",
		"1", 1,
		"Pieces", "57",
		"", "pd2037001687.htm",
		"", 1,
		"REVOL", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/tn_Deactpistol (4).jpg",
		200, 112,
		"DCTP-SWV", "Smith &amp; Wesson Victory model .38 Special",
		"Deactivated S&amp;W Victory Model", "",
		"285", "1.2",
		"1", 1,
		"Pieces", "57",
		"", "pd2132515299.htm",
		"", 1,
		"REVOL", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/tn_Deactpistol (17).jpg",
		200, 120,
		"DCTP-TAU3", "Taurus revolver 3&quot;",
		"Deactivated Taurus 3&quot;", "",
		"225", "0.6",
		"1", 1,
		"Pieces", "57",
		"", "pd-244894646.htm",
		"", 1,
		"REVOL", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/tn_Deactpistol (3).jpg",
		200, 114,
		"DCTP-WEB", "Webley MK4 service revolver .38/200",
		"Deactivated Webley Mk4", "",
		"265", "0.9",
		"1", 1,
		"Pieces", "57",
		"", "pd1046343149.htm",
		"", 1,
		"REVOL", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/tn_beretta38.JPG",
		200, 64,
		"DCTR-M38", "Beretta Model 38",
		"Deactivated Beretta Model 38", "",
		"235", "2.6",
		"1", 1,
		"Pieces", "60",
		"", "pd471865567.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/tn_dct-ns-uzi.jpg",
		200, 75,
		"DCTR-UZI", "I.M.I Uzi SMG",
		"Deactivated I.M.I Uzi SMG", "",
		"350", "2.5",
		"1", 1,
		"Pieces", "60",
		"", "pd151871039.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/tn_lan.jpg",
		200, 67,
		"DCTR-LAN", "Lanchester Mk.1",
		"", "",
		"475", "5",
		"1", 1,
		"Pieces", "60",
		"", "pd1051012004.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/tn_ppsh41.JPG",
		200, 92,
		"DCTR-PPSH", "PPSH 41 Russian SMG",
		"Deactivated PPSH 41 Russian SMG", "",
		"245", "3.4",
		"1", 1,
		"Pieces", "60",
		"", "pd-210521237.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/tn_dct-os-sten.jpg",
		200, 59,
		"DCTR-STEN", "Sten guns",
		"Deactivated Sten guns", "",
		"185", "2.5",
		"1", 1,
		"Pieces", "60",
		"Model;Mark 3@", "pd1021363823.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/tn_dct-ns-sterling.jpg",
		200, 108,
		"DCTR-STER", "Sterling L2A3 SMG",
		"Deactivated Sterling L2A3 SMG", "",
		"295", "3.2",
		"1", 1,
		"Pieces", "60",
		"", "pd-2117590551.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/tn_dp.JPG",
		200, 118,
		"DCTR-DP", "Russian DP LMG",
		"Russian DP LMG", "",
		"525", "12",
		"1", 1,
		"Pieces", "59",
		"", "pd1046523911.htm",
		"", 1,
		"MACHGUN", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/tn_dct-os-mg42.jpg",
		200, 47,
		"DCTR-MG42", "Deactivated MG42 light machine gun w/ Lafette tripod",
		"Deactivated MG42 light machine gun w/ Lafette tripod", "",
		"1195", "25",
		"1", 1,
		"Pieces", "59",
		"Options;Gun & Tripod@", "pd-972744114.htm",
		"", 1,
		"MACHGUN", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/tn_maxim.JPG",
		200, 133,
		"DCTR-MAXIM", "Maxim 1910 heavy machine gun",
		"Deactivated Maxim 1910 heavy machine gun", "",
		"695", "70",
		"1", 1,
		"Pieces", "59",
		"", "pd1138501293.htm",
		"", 1,
		"MACHGUN", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/tn_dct-os-bren.jpg",
		200, 94,
		"DCTR-BREN", "Deactivated Bren guns",
		"Deactivated Bren guns", "",
		"245", "12",
		"1", 1,
		"Pieces", "59",
		"Model;Mark 1@", "pd1648821699.htm",
		"", 1,
		"MACHGUN", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/tn_mills.jpg",
		121, 150,
		"REP-M2", "U.S M2 Pineapple grenade",
		"Replica M2 Grenade", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "105",
		"", "pd2094454875.htm",
		"", 1,
		"REPGR", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/tn_mills2.jpg",
		83, 150,
		"REP-F1", "Russian F1 Grenade",
		"Replica F1 Grenade", "",
		"16.95", "0.3",
		"1", 1,
		"Pieces", "105",
		"", "pd-689929727.htm",
		"", 1,
		"REPGR", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/tn_germanstick.jpg",
		200, 139,
		"REP-STI", "German WW2 &quot;Potato Masher&quot; stick grenade ",
		"Potato Masher stick grenade", "",
		"16.95", "0.6",
		"1", 1,
		"Pieces", "105",
		"", "pd1388283301.htm",
		"", 1,
		"REPGR", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/tn_helmet (6).jpg",
		200, 137,
		"DES-HELMB", "British 2-tone Desert helmet cover",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd1278739380.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/tn_bergencoverdes.jpg",
		200, 179,
		"DES-BGCUK", "British 2-tone Desert camo Bergen cover",
		"", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "61",
		"", "pd229959683.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/tn_boots (3).jpg",
		171, 150,
		"DES-BOOTSBR", "British Desert Boots",
		"", "",
		"49.95", "1",
		"1", 1,
		"Pieces", "61",
		"Size;10@", "pd1063546485.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/tn_desertnotebookcover.jpg",
		200, 181,
		"DES-NBK", "Desert Notebook cover",
		"", "",
		"8.95", "0.1",
		"1", 1,
		"Pieces", "61",
		"", "pd127872427.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/tn_destabs.jpg",
		200, 152,
		"DES-EPP", "British 2-tone Desert Rank Epaulettes (pair)",
		"", "",
		"7.95", "0.1",
		"1", 1,
		"Pieces", "61",
		"Rank;Lance Corporal@", "pd1613210809.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/tn_mounts.jpg",
		200, 113,
		"MOU-BGT2", "Economy 2-piece scope mounts",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "109",
		"", "pd1049106454.htm",
		"", 1,
		"MOUN", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/tn_mounts (2).jpg",
		200, 385,
		"MOU-NS1", "Nikko Sterling 1-piece scope mount",
		"", "",
		"14.95", "0.1",
		"1", 1,
		"Pieces", "109",
		"", "pd1047680052.htm",
		"", 1,
		"MOUN", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/tn_mounts (1).jpg",
		200, 420,
		"MOU-PRO1", "One Piece Pro-Mount",
		"", "",
		"29.95", "0.1",
		"1", 1,
		"Pieces", "109",
		"Variant;PRO-26 - twin screw, 56mm@", "pd-834417073.htm",
		"", 1,
		"MOUN", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/tn_mounts (1).jpg",
		200, 420,
		"MOU-PRO2", "Two Piece Pro-Mount",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "109",
		"Variant;PRO-2 - single screw, 40mm@", "pd1605613845.htm",
		"", 1,
		"MOUN", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/tn_mounts (3).jpg",
		200, 427,
		"MOU-PROB", "Pro-Bloks",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "109",
		"", "pd1636708298.htm",
		"", 1,
		"MOUN", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/tn_nvg (3).jpg",
		200, 150,
		"NVG-NH1", "Russian NH-1 Night Vision scope",
		"", "",
		"499.95", "2",
		"1", 1,
		"Pieces", "110",
		"", "pd1049110952.htm",
		"", 1,
		"NVG", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/tn_nvg (2).jpg",
		200, 183,
		"NVG-OWL", "The Owl ",
		"Compact night vision scope", "",
		"245", "0.6",
		"1", 1,
		"Pieces", "110",
		"", "pd365462580.htm",
		"", 1,
		"NVG", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/tn_telesightt (5).jpg",
		200, 78,
		"SCO-856SS", "8x56 Super Scope",
		"", "",
		"69.95", "1.1",
		"1", 1,
		"Pieces", "107",
		"", "pd1602966914.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/tn_telesightt (22).jpg",
		200, 150,
		"SCO-SIM-420", "Simmons 4x20 Rimfire ",
		"", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "107",
		"", "pd-1026818176.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/tn_telesightt (10).jpg",
		200, 101,
		"SCO-SIM-432", "Simmons 4x32WA",
		"", "",
		"34.95", "0.3",
		"1", 1,
		"Pieces", "107",
		"", "pd813363630.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/tn_telesightt (16).jpg",
		200, 98,
		"SCO-SIM-440", "Simmons 4x40WA",
		"", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "107",
		"", "pd743188364.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/tn_telesightt (15).jpg",
		200, 92,
		"SCO-SIM-3940", "Simmons 3-9x40WA",
		"", "",
		"49.95", "0.4",
		"1", 1,
		"Pieces", "107",
		"", "pd-1559099238.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/tn_silva3950.jpg",
		200, 150,
		"SCO-SIM-3950", "Simmons 3-9x50WA",
		"", "",
		"69.95", "0.3",
		"1", 1,
		"Pieces", "107",
		"", "pd403916888.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/tn_telesightt (20).jpg",
		200, 150,
		"RDS-SIM-RD", "Simmons Red Dot sight",
		"", "",
		"69.95", "0.4",
		"1", 1,
		"Pieces", "111",
		"", "pd-438518193.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/tn_telesightt (36).jpg",
		200, 133,
		"RDS-OPTI90", "Edgar Brothers Opti 90",
		"", "",
		"99.95", "0.6",
		"1", 1,
		"Pieces", "111",
		"", "pd917907733.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/tn_telesightt (21).jpg",
		200, 150,
		"RDS-WAL", "Walther Point Sight",
		"", "",
		"19.95", "0.2",
		"1", 1,
		"Pieces", "111",
		"", "pd167635275.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/tn_telesightt (2).jpg",
		200, 111,
		"SCO-SIM-W15520", "Simmons 1.5-5x20 Compact Nightview",
		"", "",
		"99.95", "0.4",
		"1", 1,
		"Pieces", "107",
		"", "pd1882438769.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/tn_telesightt (3).jpg",
		200, 88,
		"SCO-SIM-W440", "Simmons 4x40 Nightview",
		"", "",
		"89.95", "0.4",
		"1", 1,
		"Pieces", "107",
		"", "pd279157767.htm",
		"", 1,
		"SCO", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/tn_comp.jpg",
		200, 140,
		"SILVA-E4", "Silva Expedition 4 compass",
		"", "",
		"29.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd1618571126.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/tn_comp (5).jpg",
		200, 146,
		"SILVA-V8010", "Silva Voyager 8010 &quot;Brunton&quot; compass",
		"", "",
		"19.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-619382124.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/tn_comp (12).jpg",
		173, 150,
		"SILVA-R27", "Silva Ranger 27 compass",
		"", "",
		"19.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-2103823646.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/images/nopicture.gif",
		55, 38,
		"SILVA-F26", "Silva Field 26 compass",
		"", "",
		"16.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd1226808288.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/tn_prismaticsilva.jpg",
		200, 150,
		"SILVA-MKIV", "Silva MKIV CS64 Prismatic compass",
		"", "",
		"215", "0.2",
		"1", 1,
		"Pieces", "94",
		"", "pd-1849858802.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/tn_comp (10).jpg",
		165, 150,
		"SILVA-PEDO", "Silva Pedometer w/ Panic Alarm",
		"", "",
		"25", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd93669868.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/tn_comp (4).jpg",
		200, 102,
		"SILVA-E54", "Silva Expedition 54 Optical sighting compass",
		"", "",
		"59.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-207785478.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/tn_comp (11).jpg",
		200, 139,
		"SILVA-EG", "Silva Eclipse Grip multi-functional compass",
		"", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-454668104.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/tn_comp (3).jpg",
		200, 138,
		"SILVA-R3", "Silva Ranger 3 compass",
		"", "",
		"14.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd97748390.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/tn_field7.jpg",
		200, 150,
		"SILVA-F7", "Silva Field 7 compass",
		"", "",
		"10.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-645940156.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/tn_comp (8).jpg",
		200, 128,
		"SILVA-EGPS96", "Silva Eclipse GPS 96 compass",
		"", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-1891398638.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/tn_comp (1).jpg",
		178, 150,
		"SILVA-PEDO1", "Silva Pedometer",
		"", "",
		"16.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-216573808.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/tn_comp (2).jpg",
		94, 150,
		"SILVA-T9", "Silva Type 9 compass",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-2142752450.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/tn_comp (7).jpg",
		200, 123,
		"SILVA-EP", "Silva Eclipse Pro sighting compass",
		"", "",
		"55", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd1253552540.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/tn_comp (14).jpg",
		174, 150,
		"SILVA-AUTO", "Silva Automotive/Boat compass",
		"", "",
		"59.95", "0.2",
		"1", 1,
		"Pieces", "94",
		"", "pd1839128874.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/tn_comp (13).jpg",
		71, 150,
		"NAV-LENSC", "Lensatic Compass",
		"", "",
		"11.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd663491432.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/images/nopicture.gif",
		55, 38,
		"NAV-MAPC", "Map Compass",
		"", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-233584682.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/images/nopicture.gif",
		55, 38,
		"NAV-MAG310", "Magellan GPS 310",
		"", "",
		"139.95", "0.2",
		"1", 1,
		"Pieces", "94",
		"", "pd1751943668.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/images/nopicture.gif",
		55, 38,
		"SILVA-CMC", "Silva Compact Map Case",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"", "pd-487730878.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/images/nopicture.gif",
		55, 38,
		"NAV-RMC", "Raven Map Case",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "94",
		"Color;Black@", "pd2110113328.htm",
		"", 1,
		"NAV", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/tn_HandK1.jpg",
		200, 145,
		"DCTP-HKUSP", "Heckler &amp; Koch USP 9mm",
		"Deactivated H&amp;K USP", "",
		"795", "0.9",
		"1", 1,
		"Pieces", "56",
		"", "pd1050327452.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/tn_sig1.jpg",
		200, 143,
		"DCTP-P226", "Sig Sauer P226 9mm",
		"Deactivated Sig P226", "",
		"595", "1",
		"1", 1,
		"Pieces", "56",
		"", "pd1465461034.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/tn_ruskeyrifle.jpg",
		200, 50,
		"DCTR-MOSIN", "Mosin Nagant Carbine",
		"Deactivated Mosin Nagant Carbine", "",
		"275", "3.5",
		"1", 1,
		"Pieces", "58",
		"", "pd-1343251608.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/tn_germanstick.jpg",
		200, 139,
		"REP-STI-1", "Replica German WW2 &quot;Potato Masher&quot; stick grenade ",
		"Potato Masher stick grenade", "",
		"16.95", "0.6",
		"1", 1,
		"Pieces", "138",
		"", "pd398707738.htm",
		"", 1,
		"WW2", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/tn_mills2.jpg",
		83, 150,
		"REP-F1-1", "Replica Russian F1 Grenade",
		"Russian F1 Grenade", "",
		"16.95", "0.3",
		"1", 1,
		"Pieces", "138",
		"", "pd-1904096718.htm",
		"", 1,
		"WW2", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/tn_ger0016.jpg",
		200, 156,
		"WW2-GSHO", "German Wehrmacht Officers woolen Ski cap",
		"", "",
		"45", "0.2",
		"1", 1,
		"Pieces", "138",
		"", "pd583661478.htm",
		"", 1,
		"WW2", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/tn_whermachtwaterbottle.jpg",
		200, 150,
		"WW2-WWB", "German Wehrmacht Waterbottle",
		"", "",
		"19.95", "0.2",
		"1", 1,
		"Pieces", "138",
		"", "pd236761898.htm",
		"", 1,
		"WW2", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/tn_cz58.jpg",
		200, 51,
		"DCTR-CZ58", "Deactivated CZ58 rifles",
		"", "",
		"395", "3.5",
		"1", 1,
		"Pieces", "58",
		"Type;CZ58 fixed stock@", "pd-805724788.htm",
		"", 1,
		"DCR", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/tn_knife (20).jpg",
		80, 150,
		"KNI-USMC", "U.S. Marine Corps type knife",
		"", "",
		"18.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd-553336015.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/tn_knife (19).jpg",
		110, 150,
		"KNI-ACRW", "U.S. Aircrew type survival knife",
		"", "",
		"18.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd-1797324601.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/tn_knife (13).jpg",
		200, 144,
		"KNI-KUK", "Gurkha Kukhri knife",
		"", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "88",
		"", "pd118820941.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/tn_knife (24).jpg",
		83, 150,
		"KNI-TRAM", "Tramontina blade",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd1153762115.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/tn_knife (16).jpg",
		90, 150,
		"KNI-ARMADA", "Armada Bowie",
		"", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "88",
		"Size;5 inch blade@", "pd-841645189.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/tn_knife (17).jpg",
		98, 150,
		"KNI-GODB", "Godzilla Bowie",
		"", "",
		"55", "1",
		"1", 1,
		"Pieces", "88",
		"", "pd1256694305.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/tn_knife (21).jpg",
		130, 150,
		"KNI-ESKK", "Explora Survival Kit knife",
		"", "",
		"26.95", "0.5",
		"1", 1,
		"Pieces", "88",
		"", "pd988132377.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/tn_knife (15).jpg",
		91, 150,
		"KNI-BMM", "Panga style machete",
		"", "",
		"12.95", "0.8",
		"1", 1,
		"Pieces", "88",
		"", "pd-402251851.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/tn_charger.jpg",
		144, 150,
		"AS-ACC-CHARG", "Charger for electric airsoft batteries",
		"Charger for electric airsoft batteries", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "12",
		"Connector type;Large@", "pd1656033592.htm",
		"", 1,
		"BATTC", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/tn_lrgbat.jpg",
		139, 150,
		"AS-ACC-LRGBAT-1", "Large Battery for electric airsoft guns",
		"Large-type connector battery", "",
		"35", "0.3",
		"1", 1,
		"Pieces", "12",
		"", "pd-1891662652.htm",
		"", 1,
		"BATTC", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/tn_minbat.jpg",
		200, 69,
		"AS-ACC-MINBAT-1", "Mini type battery for electric airsoft guns",
		"Mini type connector battery", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "12",
		"", "pd1671071890.htm",
		"", 1,
		"BATTC", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/tn_stkbat.jpg",
		200, 110,
		"AS-ACC-STKBAT-1", "Stick type battery for electric airsoft guns",
		"Mini type connector battery in stick configuration", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "12",
		"", "pd1109960976.htm",
		"", 1,
		"BATTC", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/tn_ameag.jpg",
		54, 150,
		"AS-ACC-AMEAG-2", "American Eagle gas",
		"APS3 inside, airsoft gas", "",
		"14.95", "0.7",
		"1", 1,
		"Pieces", "18",
		"", "pd-882117186.htm",
		"", 1,
		"NBBG", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/tn_gas_green.jpg",
		62, 150,
		"AS-ACC-GG-2", "Green Gas",
		"HFC22 high pressure airsoft gas", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "18",
		"", "pd-276624868.htm",
		"", 1,
		"NBBG", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/tn_ameag.jpg",
		54, 150,
		"AS-ACC-AMEAG-3", "American Eagle gas",
		"APS3 inside, airsoft gas", "",
		"14.95", "0.7",
		"1", 1,
		"Pieces", "15",
		"", "pd1412165034.htm",
		"", 1,
		"GBBG", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/tn_gas_green.jpg",
		62, 150,
		"AS-ACC-GG-3", "Green Gas",
		"HFC22 high pressure airsoft gas", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "15",
		"", "pd973206504.htm",
		"", 1,
		"GBBG", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-1", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "17",
		"", "pd1936645825.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-1", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "17",
		"", "pd-316487977.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1-1", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "17",
		"", "pd1688503517.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1-1", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "17",
		"", "pd569494099.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1-1", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "17",
		"", "pd-1923767111.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1-1", "Marui 0.2g 6mm Airsoft ballshot",
		"High quality 6mm BB, bag of 3500", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "17",
		"", "pd-1105732209.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1-1", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "17",
		"", "pd1513839189.htm",
		"", 1,
		"NBBAMMO", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-2", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "11",
		"", "pd-1981580149.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-2", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "11",
		"", "pd-491224655.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1-2", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "11",
		"", "pd660792135.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1-2", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "11",
		"", "pd1962260173.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1-2", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "11",
		"", "pd1809845699.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1-2", "Marui 0.2g 6mm Airsoft ballshot",
		"High quality 6mm BB, bag of 3500", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "11",
		"", "pd-71477847.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1-2", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "11",
		"", "pd689747967.htm",
		"", 1,
		"AEGAMMO", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-3", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "20",
		"", "pd1511488069.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-3", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "20",
		"", "pd-498180613.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1-3", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "20",
		"", "pd-1733951327.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1-3", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"Airsoft BB ballshot - 2000 rounds of supergrade ammo", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "20",
		"", "pd-1462092873.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1-3", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "20",
		"", "pd-2134866755.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1-3", "Marui 0.2g 6mm Airsoft ballshot",
		"Marui 0.2g 6mm Airsoft ballshot", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "20",
		"", "pd483478835.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1-3", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "20",
		"", "pd22045337.htm",
		"", 1,
		"ASAMMO", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-4", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "14",
		"", "pd1294749295.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-4", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "14",
		"", "pd2037167669.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1-4", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "14",
		"", "pd-205014165.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1-4", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "14",
		"", "pd-994681967.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1-4", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "14",
		"", "pd1226821671.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1-4", "Marui 0.2g 6mm Airsoft ballshot",
		"High quality 6mm BB, bag of 3500", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "14",
		"", "pd-1519128915.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1-4", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "14",
		"", "pd1808566435.htm",
		"", 1,
		"GBAMMO", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-5", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "22",
		"", "pd-395457655.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-5", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "22",
		"", "pd398303455.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/tn_1000hw1.jpg",
		133, 150,
		"AS-ACC-HW1000-1-5", "Airsoft BB ballshot - 1000 rounds of Heavyweight ammo",
		"1000 rounds of Heavyweight 6mm BBs", "",
		"6.95", "0.2",
		"1", 1,
		"Pieces", "22",
		"", "pd1586105893.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/tn_2000bst2.jpg",
		66, 150,
		"AS-ACC-SGAM-1-5", "Airsoft BB ballshot - 2000 rounds of supergrade ammo",
		"2000 rounds of Supergrade 6mm BBs", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "22",
		"", "pd691442907.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/tn_1000bs2.jpg",
		145, 150,
		"AS-ACC-1000b-1-5", "Airsoft BB ballshot - Bag of 1000",
		"Bag of 1000 mid-weight BBs", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "22",
		"", "pd-2010606975.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/tn_marui2g.jpg",
		109, 150,
		"AS-ACC-M2G-1-5", "Marui 0.2g 6mm Airsoft ballshot",
		"Marui 0.2g 6mm Airsoft ballshot", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "22",
		"", "pd663396503.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/tn_excel.jpg",
		128, 150,
		"AS-ACC-EXCL-1-5", "Excel 0.2g Biodegradable Airsoft ballshot",
		"High quality biodegradable 6mm BBs, bag of 3700", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "22",
		"", "pd-1908476771.htm",
		"", 1,
		"SPRAMM", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM177-1", "Bisley Premier .177 pointed pellets (500 pack)",
		"Bisley Premier .177 pointed pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd1412093272.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM22-1", "Bisley Premier .22 pointed pellets (200 pack)",
		"Bisley Premier .22 pointed pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd88742726.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF-1", "Bisley Superfield .177 round head pellets (500 pack)",
		"Bisley Superfield .177 round head pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd798673636.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF22-1", "Bisley Superfield .22 round head pellets (200 pack)",
		"Bisley Superfield .22 round head pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd1817951154.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/tn_pellet (15).jpg",
		156, 150,
		"AMMO-BD-1", "Bulldog .22 round head pellet (500 rounds)",
		"Bulldog .22 round head pellet (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd349540656.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP177-1", "Crosman Accupell .177 (500 rounds)",
		"Crosman Accupell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd1797233374.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP22-1", "Crosman Accupell .22 (500 rounds)",
		"Crosman Accupell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd-940592068.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/tn_pellet (22).jpg",
		162, 150,
		"AMMO-ALL177-1", "Crosman Co2Pell alloy head, plastic skirt .177",
		"Crosman Co2Pell alloy head, plastic skirt .177", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd544023754.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/tn_pellet (18).jpg",
		132, 150,
		"AMMO-CBSP-1", "Crosman Copperhead .177 BB Speedloader + 1000 BBs",
		"Crosman Copperhead .177 BB Speedloader + 1000 BBs", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd1337884680.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/tn_pellet (3).jpg",
		115, 150,
		"AMMO-CB1500-1", "Crosman Copperhead .177 BBs (1500 rounds)",
		"Crosman Copperhead .177 BBs (1500 rounds)", "",
		"5.5", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd1456113014.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/tn_pellet (4).jpg",
		149, 150,
		"AMMO-CB435-1", "Crosman Copperhead .177 BBs (435 rounds)",
		"Crosman Copperhead .177 BBs (435 rounds)", "",
		"2.5", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd-379322220.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/tn_pellet (24).jpg",
		115, 150,
		"AMMO-CB600-1", "Crosman Copperhead .177 BBs (600 rounds)",
		"Crosman Copperhead .177 BBs (600 rounds)", "",
		"2.99", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd1389930722.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP177-1", "Crosman Matchpell .177 (500 rounds)",
		"Crosman Matchpell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd-1399127584.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP22-1", "Crosman Matchpell .22 (500 rounds)",
		"Crosman Matchpell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd-1065403634.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/tn_pellet (16).jpg",
		147, 150,
		"AMMO-CP177-1", "Crosman Powapell .177 (500 rounds)",
		"Crosman Powapell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd1824722924.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/tn_pellet (28).jpg",
		158, 150,
		"AMMO-CP22-1", "Crosman Powapell .22 (500 rounds)",
		"Crosman Powapell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "4",
		"", "pd718841850.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD177-1", "Crosman Premier Domed .177 (1250 pack)",
		"Crosman Premier Domed .177 (1250 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "4",
		"", "pd581727928.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD22-1", "Crosman Premier Domed .22 (625 pack)",
		"Crosman Premier Domed .22 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "4",
		"", "pd719199142.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/tn_pellet (27).jpg",
		151, 150,
		"AMMO-ELY22-1", "Eley Wasps .22 round head pellets (500 rounds)",
		"Eley Wasps .22 round head pellets (500 rounds)", "",
		"4.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"Calibre;5.5mm@", "pd-349945276.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD20-1", "Crosman Premier Domed .20 (625 pack)",
		"Crosman Premier Domed .20 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "4",
		"", "pd953385490.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/tn_pellet (11).jpg",
		156, 150,
		"AMMO-ELY177-1", "Eley Wasps .177 round head pellets (500 rounds)",
		"Eley Wasps .177 round head pellets (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd1715486352.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/tn_pellet (17).jpg",
		153, 150,
		"AMMO-JETS22-1", "Hustler Jets .22 pointed pellets (500 rounds)",
		"Hustler Jets .22 pointed pellets (500 rounds)", "",
		"4.5", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd-864843970.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD177-1", "Lazapell .177 Domed pellet (500 rounds)",
		"Lazapell .177 Domed pellet (500 rounds)", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd57341852.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD22-1", "Lazapell .22 Domed pellet (500 rounds)",
		"Lazapell .22 Domed pellet (500 rounds)", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "4",
		"", "pd937137962.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/tn_pellet (29).jpg",
		157, 150,
		"AMMO-MKS22-1", "Marksman .22 pointed pellets",
		"Marksman .22 pointed pellets", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd-2043692696.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/tn_pellet (33).jpg",
		149, 150,
		"AMMO-MKS177-1", "Marksman .177 pointed pellets",
		"Marksman .177 pointed pellets", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd1765268950.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/tn_pellet (34).jpg",
		163, 150,
		"AMMO-MKS1177-1", "Marksman .177 No.1 round head pellets (500 rounds)",
		"Marksman .177 No.1 round head pellets (500 rounds)", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd-809070604.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/tn_pellet (6).jpg",
		122, 150,
		"AMMO-PROM177-1", "Prometheus MK2 alloy head pellet .177 (125 rounds)",
		"Prometheus MK2 alloy head pellet .177 (125 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd2133804866.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/tn_pellet (5).jpg",
		117, 150,
		"AMMO-PROM22-1", "Prometheus MK2 alloy head pellet .22 (100 rounds)",
		"Prometheus MK2 alloy head pellet .22 (100 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd-1184872640.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/tn_nbb-as-mp40.jpg",
		200, 79,
		"REP-MP40-1", "Replica Asahi MP40 - one only!",
		"Asahi MP40 airsoft replica", "",
		"695", "4.3",
		"1", 1,
		"Pieces", "141",
		"", "pd70825944.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/tn_spr-bgt-1921d.jpg",
		200, 64,
		"SPR-UK-1921-1", "Thompson 1921 Drum Mag version spring airsoft model",
		"Thompson 1921 Drum Mag version spring airsoft SMG", "",
		"69.95", "2",
		"1", 1,
		"Pieces", "141",
		"", "pd1833444491.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/tn_spr-bgt-m1a1.jpg",
		200, 69,
		"SPR-UK-M1A1-1", "Thompson M1A1 spring airsoft model",
		"Thompson M1A1 spring airsoft SMG", "",
		"69.95", "1.6",
		"1", 1,
		"Pieces", "141",
		"", "pd265929301.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/tn_aeg-tm-m1a1.jpg",
		200, 69,
		"AEG-TM-M1A1", "Tokyo Marui Thompson M1A1",
		"Thompson M1A1 electric airsoft rifle", "",
		"265", "3.7",
		"1", 1,
		"Pieces", "141",
		"Options;None@", "pd978151857.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/tn_broom.jpg",
		200, 121,
		"REP-BROOM-1", "Replica Broomhandle Mauser",
		"Broomhandle Mauser Replica", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "140",
		"", "pd362225420.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/tn_DSCF0020.jpg",
		200, 118,
		"REP-1911-1", "Replica Colt 1911 .45",
		"Colt 1911 .45 replica", "",
		"65", "1",
		"1", 1,
		"Pieces", "140",
		"", "pd-1327508124.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/tn_DSCF0007.jpg",
		200, 137,
		"REP-LUG-1", "Replica Luger Mod. P08",
		"Luger Mod. P08", "",
		"65", "0.9",
		"1", 1,
		"Pieces", "140",
		"", "pd-1278950970.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-SSSCP", "German Set of SS collar patches and arm eagle",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd31578990.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-SBCL", "German Shoulder boards",
		"", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd-1505704936.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-PAB", "German Panzer Assault badge",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd857525236.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/tn_ger0011.jpg",
		200, 95,
		"WW2-BKS", "German Military Passes and Pay books",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"Book;General Military Pass@", "pd2093892173.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-ASSC", "German Assault Clasp",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd792471372.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-GAAB", "German Army General Assault Badge",
		"", "",
		"5.5", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd2074289572.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-DUCB", "German Dress Uniform Collar boards",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd1735300210.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/images/nopicture.gif",
		55, 38,
		"WW2-AMBAD", "American Airborne Badges",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"Regiment;101st Airborne@", "pd-1083427807.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/images/nopicture.gif",
		55, 38,
		"WW2-PURP", "American Purple Heart",
		"", "",
		"25", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd588355881.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/tn_ger0023.jpg",
		200, 126,
		"WW2-PGOT", "German Panzer-Grenadier Officers tunic and jodphurs",
		"", "",
		"85", "2",
		"1", 1,
		"Pieces", "138",
		"", "pd1744679836.htm",
		"", 1,
		"WW2", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/tn_thompson.JPG",
		200, 89,
		"DCTR-M1A1", "Thompson M1A1",
		"Deactivated Thompson M1A1", "",
		"375", "4.2",
		"1", 1,
		"Pieces", "60",
		"", "pd185986613.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/tn_headgear (9).jpg",
		200, 149,
		"DES-BOO", "Desert Boonie/Bush Hat used grade",
		"", "",
		"8.95", "0.4",
		"1", 1,
		"Pieces", "62",
		"Size;54@", "pd-760909322.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/thumb/tn_headgear (9).jpg",
		200, 149,
		"DES-BOON", "Desert Boonie/Bush Hat, Brand new",
		"", "",
		"16.95", "0.4",
		"1", 1,
		"Pieces", "62",
		"Size;54@", "pd1834664212.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/tn_scrim (2).jpg",
		156, 150,
		"DES-SWEAT", "Desert Sweat Rag",
		"", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "62",
		"", "pd1375060027.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/tn_web (5).jpg",
		200, 109,
		"DES-WCRD", "Raven 2-tone Desert camo Chest rig",
		"", "",
		"69.95", "0.9",
		"1", 1,
		"Pieces", "63",
		"", "pd42317375.htm",
		"", 1,
		"DESLBE", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/tn_web (15).jpg",
		139, 150,
		"DES-WHD", "Wyvern 2-tone Desert camo holster",
		"", "",
		"29.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"", "pd-1459701271.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/tn_web.jpg",
		151, 150,
		"DES-AAVD", "Wyvern 2-tone Desert camo All Arms assault vest",
		"", "",
		"159.95", "1",
		"1", 1,
		"Pieces", "63",
		"", "pd1226416773.htm",
		"", 1,
		"DESLBE", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/tn_Deactpistol (11).jpg",
		200, 132,
		"DCTP-HPMK1", "Browning Hi-Power MK.1 9mm",
		"Browning Hi-Power MK.1 9mm", "",
		"550", "1",
		"1", 1,
		"Pieces", "140",
		"Markings;Chinese@", "pd-1172790785.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/tn_Deactpistol (12).jpg",
		200, 127,
		"DCTP-HPMK2-1", "Browning Hi-Power MK2",
		"Deactivated Browning Hi-Power ", "",
		"550", "1",
		"1", 1,
		"Pieces", "140",
		"", "pd271378427.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/tn_Deactpistol (15).jpg",
		200, 126,
		"DCTP-1911-1", "Colt 1911A1 .45",
		"Deactivated Colt 1911A1", "",
		"475", "1.1",
		"1", 1,
		"Pieces", "140",
		"", "pd881826465.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/tn_nbb-bgt-25.jpg",
		200, 143,
		"NBB-BGT-25", "Colt .25 ",
		"Pocket sized gas non-blowback pistol", "",
		"29.95", "0.3",
		"1", 1,
		"Pieces", "16",
		"", "pd1046705045.htm",
		"", 1,
		"AGN", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/tn_nbb-tm-wsg.jpg",
		200, 118,
		"NBB-TM-WSG", "Marui Wilson Supergrade",
		"Wilson Supergrade semi-automatic airsoft pistol", "",
		"49.95", "0.6",
		"1", 1,
		"Pieces", "16",
		"", "pd-238667829.htm",
		"", 1,
		"AGN", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/tn_nbb-tm-cm.jpg",
		200, 128,
		"NBB-TM-CM", "Marui Centimeter Master",
		"Centimeter Master semi-auto airsoft pistol", "",
		"49.95", "0.6",
		"1", 1,
		"Pieces", "16",
		"", "pd354332401.htm",
		"", 1,
		"AGN", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/tn_nbb-tm-gb.jpg",
		200, 138,
		"NBB-TM-GB", "Marui Steyr GB",
		"Steyr GB semi-automatic airsoft pistol", "",
		"59.95", "0.6",
		"1", 1,
		"Pieces", "16",
		"", "pd1917007885.htm",
		"", 1,
		"AGN", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/tn_pellet (28).jpg",
		158, 150,
		"AMMO-CP22", "Crosman Powapell .22 (500 rounds)",
		"Crosman Powapell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd33976579.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/tn_pellet (16).jpg",
		147, 150,
		"AMMO-CP177", "Crosman Powapell .177 (500 rounds)",
		"Crosman Powapell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd1739549417.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP22", "Crosman Accupell .22 (500 rounds)",
		"Crosman Accupell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd1917439807.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP177", "Crosman Accupell .177 (500 rounds)",
		"Crosman Accupell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd952066949.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP177", "Crosman Matchpell .177 (500 rounds)",
		"Crosman Matchpell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd-571119301.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP22", "Crosman Matchpell .22 (500 rounds)",
		"Crosman Matchpell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd-1683423775.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD177", "Crosman Premier Domed .177 (1250 pack)",
		"Crosman Premier Domed .177 (1250 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "23",
		"", "pd-1910342921.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD20", "Crosman Premier Domed .20 (625 pack)",
		"Crosman Premier Domed .20 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "23",
		"", "pd-1466444291.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD22", "Crosman Premier Domed .22 (625 pack)",
		"Crosman Premier Domed .22 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "23",
		"", "pd-573177741.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/tn_pellet (22).jpg",
		162, 150,
		"AMMO-ALL177", "Crosman Co2Pell alloy head, plastic skirt .177",
		"Crosman Co2Pell alloy head, plastic skirt .177", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "23",
		"", "pd-762755111.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/thumb/tn_pellet (6).jpg",
		122, 150,
		"AMMO-PROM177", "Prometheus MK2 alloy head pellet .177 (125 rounds)",
		"Prometheus MK2 alloy head pellet .177 (125 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-834882129.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/tn_pellet (5).jpg",
		117, 150,
		"AMMO-PROM22", "Prometheus MK2 alloy head pellet .22 (100 rounds)",
		"Prometheus MK2 alloy head pellet .22 (100 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd99118965.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/tn_pellet (24).jpg",
		115, 150,
		"AMMO-CB600", "Crosman Copperhead .177 BBs (600 rounds)",
		"Crosman Copperhead .177 BBs (600 rounds)", "",
		"2.99", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd916919979.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/tn_pellet (3).jpg",
		115, 150,
		"AMMO-CB1500", "Crosman Copperhead .177 BBs (1500 rounds)",
		"Crosman Copperhead .177 BBs (1500 rounds)", "",
		"5.5", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd-924178223.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/tn_pellet (4).jpg",
		149, 150,
		"AMMO-CB435", "Crosman Copperhead .177 BBs (435 rounds)",
		"Crosman Copperhead .177 BBs (435 rounds)", "",
		"2.5", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd-867868825.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/tn_pellet (18).jpg",
		132, 150,
		"AMMO-CBSP", "Crosman Copperhead .177 BB Speedloader + 1000 BBs",
		"Crosman Copperhead .177 BB Speedloader + 1000 BBs", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd-106360851.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/tn_pellet (11).jpg",
		156, 150,
		"AMMO-ELY177", "Eley Wasps .177 round head pellets (500 rounds)",
		"Eley Wasps .177 round head pellets (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-39613469.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/tn_pellet (27).jpg",
		151, 150,
		"AMMO-ELY22", "Eley Wasps .22 round head pellets (500 rounds)",
		"Eley Wasps .22 round head pellets (500 rounds)", "",
		"4.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"Calibre;5.5mm@", "pd-2046721847.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF", "Bisley Superfield .177 round head pellets (500 pack)",
		"Bisley Superfield .177 round head pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd1575311391.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF22", "Bisley Superfield .22 round head pellets (200 pack)",
		"Bisley Superfield .22 round head pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd959289189.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/tn_pellet (17).jpg",
		153, 150,
		"AMMO-JETS22", "Hustler Jets .22 pointed pellets (500 rounds)",
		"Hustler Jets .22 pointed pellets (500 rounds)", "",
		"4.5", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd465715227.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM177", "Bisley Premier .177 pointed pellets (500 pack)",
		"Bisley Premier .177 pointed pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd2065772481.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM22", "Bisley Premier .22 pointed pellets (200 pack)",
		"Bisley Premier .22 pointed pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-1069449257.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/tn_pellet.jpg",
		156, 150,
		"AMMO-RWS", "RWS Geco flat top pellet .177 (pack of 500)",
		"RWS Geco flat top pellet .177 (pack of 500)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-1650072099.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD22", "Lazapell .22 Domed pellet (500 rounds)",
		"Lazapell .22 Domed pellet (500 rounds)", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd825627475.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD177", "Lazapell .177 Domed pellet (500 rounds)",
		"Lazapell .177 Domed pellet (500 rounds)", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "23",
		"", "pd322377145.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/tn_pellet (15).jpg",
		156, 150,
		"AMMO-BD", "Bulldog .22 round head pellet (500 rounds)",
		"Bulldog .22 round head pellet (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-1283803505.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/tn_pellet (33).jpg",
		149, 150,
		"AMMO-MKS177", "Marksman .177 pointed pellets",
		"Marksman .177 pointed pellets", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-1415718059.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/tn_pellet (29).jpg",
		157, 150,
		"AMMO-MKS22", "Marksman .22 pointed pellets",
		"Marksman .22 pointed pellets", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd1760421259.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/tn_pellet (34).jpg",
		163, 150,
		"AMMO-MKS1177", "Marksman .177 No.1 round head pellets (500 rounds)",
		"Marksman .177 No.1 round head pellets (500 rounds)", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "23",
		"", "pd-1303571791.htm",
		"", 1,
		"AMMU", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/tn_spr-tw-sa80.jpg",
		200, 81,
		"SPR-TW-SA80", "Taiwanese made SA80",
		"SA80 airsoft rifle", "",
		"119.95", "2",
		"1", 1,
		"Pieces", "21",
		"Model;Iron Sights@", "pd1046777932.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/tn_spr-bgt-ak74.jpg",
		200, 64,
		"SPR-BGT-AK74", "Budget AK74",
		"AK74 spring airsoft budget rifle", "",
		"59.95", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd2024425734.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/tn_spr-tm-m16a1.jpg",
		200, 61,
		"SPR-TM-M16", "Tokyo Marui Colt M16A1",
		"Colt M16A1 spring airsoft rifle by Marui", "",
		"115", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd1974840996.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/tn_spr-tm-g3a3.jpg",
		200, 55,
		"SPR-TM-G3", "Tokyo Marui H&amp;K G3A3",
		"H&amp;K G3A3 spring action airsoft rifle", "",
		"115", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd-2050472590.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/images/nopicture.gif",
		55, 38,
		"SPR-TM-XM177", "Tokyo Marui Colt XM177",
		"Colt XM177 spring airsoft rifle by Marui", "",
		"115", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd566505712.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/images/nopicture.gif",
		55, 38,
		"SPR-TM-UZI", "Tokyo Marui Uzi",
		"Uzi spring airsoft gun", "",
		"115", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd1794523294.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/tn_spr-tm-mp5.jpg",
		200, 110,
		"SPR-TM-MP5", "Tokyo Marui H&amp;K MP5A3",
		"H&amp;K MP5A3 spring airsoft gun", "",
		"115", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd1380306940.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/images/nopicture.gif",
		55, 38,
		"SPR-TM-SKP", "Tokyo Marui Skorpion VZ61",
		"Skorpion VZ61 spring airsoft gun", "",
		"69.95", "0.6",
		"1", 1,
		"Pieces", "21",
		"", "pd912762506.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/tn_bgtmp5sd.jpg",
		200, 78,
		"SPR-BGT-MP5SD", "Budget H&amp;K MP5SD series",
		"H&amp;K MP5SD budget spring airsoft ", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "21",
		"Model;MP5SD5@", "pd41427618.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/tn_bgtmp5.jpg",
		200, 90,
		"SPR-BGT-MP5A4", "Budget H&amp;K MP5A4",
		"H&amp;K MP5A4 budget spring airsoft smg", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "21",
		"", "pd1488327072.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/tn_spr-bgt-pdw.jpg",
		200, 87,
		"SPR-BGT-MP5PDW", "Budget H&amp;K MP5K PDW",
		"H&amp;K MP5K PDW budget spring airsoft smg", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "21",
		"", "pd-954740530.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/tn_spr-bgt-sd3.jpg",
		200, 89,
		"SPR-BGT-MP5SD3", "Budget H&amp;K MP5SD3",
		"H&amp;K MP5SD3 budget spring airsoft ", "",
		"69.95", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd-714302548.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/tn_spr-bgt-aug.jpg",
		200, 81,
		"SPR-BGT-AUG", "Budget Steyr AUG",
		"Steyr AUG budget airsoft rifle.", "",
		"59.95", "1.4",
		"1", 1,
		"Pieces", "21",
		"", "pd-442220936.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/tn_spr-bgt-suzi.jpg",
		200, 95,
		"SPR-BGT-SUZI", "Budget SWAT Uzi",
		"SWAT Uzi budget airsoft SMG", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "21",
		"", "pd394406246.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/tn_spr-bgt-m1a1.jpg",
		200, 69,
		"SPR-UK-M1A1", "Thompson M1A1",
		"Thompson M1A1 spring airsoft SMG", "",
		"69.95", "1.6",
		"1", 1,
		"Pieces", "21",
		"", "pd1067845124.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/tn_spr-bgt-1921d.jpg",
		200, 64,
		"SPR-UK-1921", "Thompson 1921 Drum Mag version",
		"Thompson 1921 Drum Mag version spring airsoft SMG", "",
		"69.95", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd646048722.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/tn_sps-bgt-rw.jpg",
		200, 60,
		"SPS-BGT-RW", "Remington Wingmaster shotgun",
		"Remington Wingmaster budget airsoft shotgun", "",
		"39.95", "1",
		"1", 1,
		"Pieces", "21",
		"", "pd-1933328816.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/thumb/tn_sps-ds-spas.jpg",
		200, 64,
		"SPS-DS-SPAS12", "Dong San SPAS-12",
		"Dong San SPAS-12 airsoft shotgun", "",
		"69.95", "2.4",
		"1", 1,
		"Pieces", "21",
		"", "pd-1754657538.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/thumb/tn_sps-ds-m37.jpg",
		200, 67,
		"SPS-DS-M37", "Dong San Ithaca M37 shotgun",
		"Dong San Ithaca M37 airsoft shotgun", "",
		"59.95", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd828633948.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/tn_newaeg0002.jpg",
		200, 77,
		"SPR-TM-BEN", "Tokyo Marui Benelli M3 Super 90",
		"Tokyo Marui Benelli M3 Super 90 spring airsoft shotgun", "",
		"219.95", "3.5",
		"1", 1,
		"Pieces", "21",
		"", "pd699660522.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/tn_sps-tm-spas12.jpg",
		200, 62,
		"SPR-TM-SPAS12", "Tokyo Marui SPAS-12",
		"Franchi SPAS-12 spring airsoft shotgun by Marui", "",
		"219.95", "3.5",
		"1", 1,
		"Pieces", "21",
		"", "pd231600424.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/tn_spp-uhc-usp.jpg",
		200, 144,
		"SPP-UHC-USP", "UHC H&amp;K USP Hop-Up",
		"UHC H&amp;K USP Hop-Up spring airsoft pistol", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"", "pd1046861498.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/tn_spp-uhc-g17hp.jpg",
		200, 138,
		"SPP-UHC-G17", "UHC Glock 17 Hop-Up",
		"UHC Glock 17 Hop-Up spring airsoft pistol", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"", "pd-1918876808.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/tn_spp-uhc-g17lhp.jpg",
		200, 113,
		"SPP-UHC-G17L", "UHC Glock 17L Hop-Up",
		"UHC Glock 17L Hop-Up spring airsoft pistol", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"", "pd-1202604442.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/tn_spp-uhc-dehp.jpg",
		200, 118,
		"SPP-UHC-DE", "UHC Desert Eagle Hop-Up",
		"UHC Desert Eagle Hop-Up spring airsoft pistol", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"Color;Black@", "pd-1969988860.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/tn_uspmatch.jpg",
		200, 150,
		"SPP-UHC-USPLC", "UHC H&amp;K USP &quot;Lara Croft&quot; Hop-Up",
		"UHC H&amp;K USP &quot;Lara Croft&quot; Hop-Up spring airsoft pistol", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "19",
		"", "pd-1405070063.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/tn_spp-bgt-vek.jpg",
		190, 150,
		"SPP-BGT-CPI", "Budget C.P.I Vektor",
		"Budget C.P.I Vektor spring airsoft pistol", "",
		"19.95", "0.35",
		"1", 1,
		"Pieces", "19",
		"", "pd-336566873.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/tn_spp-bgt-g23.jpg",
		200, 136,
		"SPP-BGT-G23", "Budget Glock 23",
		"Budget Glock 23 spring airsoft pistol", "",
		"19.95", "0.35",
		"1", 1,
		"Pieces", "19",
		"", "pd131891245.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/thumb/tn_spp-bgt-kp85.jpg",
		200, 145,
		"SPP-BGT-KP85", "Budget Ruger KP85",
		"Budget Ruger KP85 spring airsoft pistol", "",
		"19.95", "0.35",
		"1", 1,
		"Pieces", "19",
		"", "pd603813411.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/tn_spp-bgt-ppk.jpg",
		195, 150,
		"SPP-BGT-PPK", "Budget Walther PPK",
		"Budget Walther PPK spring airsoft pistol", "",
		"19.95", "0.35",
		"1", 1,
		"Pieces", "19",
		"", "pd227439881.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/thumb/tn_spp-bgt-mil.jpg",
		200, 148,
		"SPP-BGT-MIL", "Budget Taurus Milennium",
		"Budget Taurus Milennium spring airsoft pistol", "",
		"24.95", "0.35",
		"1", 1,
		"Pieces", "19",
		"", "pd650405471.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/tn_spp-bgt-25blk.jpg",
		200, 145,
		"SPP-BGT-C25", "Budget Colt .25",
		"Budget Colt .25 spring airsoft pistol", "",
		"12.95", "0.15",
		"1", 1,
		"Pieces", "19",
		"Color;Black@", "pd181686181.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/tn_spp-kwc-dehp.jpg",
		200, 121,
		"SPP-KWC-DE", "KWC Desert Eagle Hop-Up",
		"KWC Desert Eagle Hop-Up spring airsoft gun", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "19",
		"Color;Black@", "pd-1911252487.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/tn_spp-kwc-nas45hp.jpg",
		200, 133,
		"SPP-KWC-NAS", "KWC Nastoff .45 Heavyweight",
		"KWC Nastoff .45 Heavyweight spring airsoft gun", "",
		"55", "1",
		"1", 1,
		"Pieces", "19",
		"Color;Black@", "pd-1604528945.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/tn_spp-kwc-p99g.jpg",
		200, 145,
		"SPP-KWC-P99", "KWC Walther P99 hop-up",
		"KWC Walther P99 hop-up spring airsoft gun", "",
		"39.95", "0.7",
		"1", 1,
		"Pieces", "19",
		"", "pd-1165730063.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/tn_spp-kwc-p990.jpg",
		200, 148,
		"SPP-KWC-P990", "KWC Walther P990 hop-up",
		"KWC Walther P990 hop-up spring airsoft gun", "",
		"39.95", "0.7",
		"1", 1,
		"Pieces", "19",
		"", "pd-1226577907.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/thumb/tn_spp-kwc-1991.jpg",
		200, 131,
		"SPP-KWC-1991", "KWC Colt 1991",
		"KWC Colt 1991 spring airsoft gun", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "19",
		"", "pd-1269391101.htm",
		"", 1,
		"ASP", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/thumb/tn_gbb-ksc-g17.jpg",
		200, 139,
		"GBB-KSC-G17", "KSC Glock 17 ",
		"Glock 17 hop-up gas blowback pistol", "",
		"109.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd998047551.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/thumb/tn_gbb-ksc-g19.jpg",
		200, 137,
		"GBB-KSC-G19", "KSC Glock 19",
		"Glock 19 hop-up gas blowback pistol", "",
		"109.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd2078675845.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/thumb/tn_gbb-ksc-g18c.jpg",
		200, 140,
		"GBB-KSC-G18", "KSC Glock 18C",
		"Glock 18C hop-up gas blowback pistol", "",
		"109.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd171678011.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/tn_gbb-ksc-g34.jpg",
		200, 126,
		"GBB-KSC-G34", "KSC Glock 34",
		"Glock 34 hop-up gas blowback pistol", "",
		"119.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd-468013599.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/tn_gbb-kjw-g27.jpg",
		200, 143,
		"GBB-KJW-G27", "Kuan-Ju Works Glock 27",
		"KJW Glock 27 gas blowback airsoft pistol", "",
		"99.95", "0.7",
		"1", 1,
		"Pieces", "13",
		"", "pd212577015.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/tn_newgbb0008.jpg",
		200, 133,
		"GBB-TM-G26", "Tokyo Marui Glock 26",
		"Marui Glock 26 gas blowback airsoft pistol", "",
		"129.95", "0.75",
		"1", 1,
		"Pieces", "13",
		"", "pd956597757.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/tn_gbb-ksc-sp2340.jpg",
		198, 150,
		"GBB-KSC-SP2340", "KSC SigPRO SP2340",
		"SigPRO hop-up gas blowback pistol", "",
		"129.95", "0.8",
		"1", 1,
		"Pieces", "13",
		"", "pd1892823155.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/tn_newgbb0003.jpg",
		200, 149,
		"GBB-KSC-M11", "KSC MAC-11 S.M.G",
		"MAC-11 gas blowback sub-machine gun", "",
		"149.95", "1.5",
		"1", 1,
		"Pieces", "13",
		"", "pd-123668519.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/tn_gbb-tm-tac.jpg",
		200, 139,
		"GBB-TM-TM", "Tokyo Marui Beretta 92F Tactical Master",
		"Tokyo Marui Beretta 92F Tactical Master gas blowback airsoft pistol", "",
		"134.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd987489711.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/tn_gbb-tm-m9.jpg",
		200, 131,
		"GBB-TM-M9", "Tokyo Marui Beretta M9",
		"Tokyo Marui Beretta M9 gas blowback airsoft pistol", "",
		"129.95", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd-899997835.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/images/nopicture.gif",
		55, 38,
		"GBB-KWC-P99", "KWC Walther P99",
		"Walther P99 gas blowback airsoft pistol", "",
		"149.95", "0.7",
		"1", 1,
		"Pieces", "13",
		"", "pd1046878777.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/tn_newgbb0010.jpg",
		200, 133,
		"GBB-KWC-DE", "KWC I.M.I Desert Eagle .50",
		"Desert Eagle .50 gas blowback airsoft pistol", "",
		"189.95", "1.2",
		"1", 1,
		"Pieces", "13",
		"Barrel Length;10 inch Interchangable barrel model@", "pd1011044111.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/tn_gbb-kwc-93fn.jpg",
		200, 129,
		"GBB-KWC-92F", "KWC Beretta M92FS",
		"Beretta M92FS gas blowback pistol", "",
		"149.95", "1",
		"1", 1,
		"Pieces", "13",
		"Color;Black@", "pd-1193156726.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/tn_newgbb0006.jpg",
		200, 133,
		"GBB-MZ-P99", "Maruzen Walther P99",
		"Walther P99 gas blowback airsoft pistol", "",
		"149.95", "0.8",
		"1", 1,
		"Pieces", "13",
		"", "pd1922349256.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/tn_newgbb0004.jpg",
		200, 133,
		"GBB-MZ-PPK", "Maruzen Walther PPK/S",
		"Walther PPK/S gas blowback airsoft pistol", "",
		"139.95", "0.6",
		"1", 1,
		"Pieces", "13",
		"", "pd-149525450.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/tn_mamp5k.JPG",
		200, 144,
		"GBB-MZ-MP5K", "Maruzen H&amp;K MP5K",
		"H&amp;K MP5K gas blowback airsoft sub-machine gun", "",
		"195", "1.7",
		"1", 1,
		"Pieces", "13",
		"", "pd-350927532.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/tn_gbb-wa-p14blk.jpg",
		200, 136,
		"GBB-WA-PO", "Western Arms Para-Ordnance P14.45",
		"Para-Ordnance P14.45 blowback airsoft pistol", "",
		"155", "1",
		"1", 1,
		"Pieces", "13",
		"", "pd1046881581.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/tn_gbb-wa-svis5.jpg",
		200, 145,
		"GBB-WA-SVI", "Western Arms SV Infinity Standard",
		"SV Infinity Standard blowback airsoft pistol", "",
		"165", "1.1",
		"1", 1,
		"Pieces", "13",
		"Barrel Length;5 inch@", "pd-1735154909.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/tn_gbb-wa-svicc39.jpg",
		195, 150,
		"GBB-WA-SVICC", "Western Arms SV Infinity 3.9&quot; Compact Carry",
		"SV Infinity 3.9&quot; Compact Carry blowback airsoft pistol", "",
		"160", "0.9",
		"1", 1,
		"Pieces", "13",
		"", "pd-1789160283.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/tn_gbb-wa-92c.jpg",
		200, 144,
		"GBB-WA-92C", "Western Arms Beretta 92FS Centurion",
		"Western Arms Beretta 92FS Centurion", "",
		"179.95", "1",
		"1", 1,
		"Pieces", "13",
		"", "pd879348509.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/tn_gbb-wa-92pvn.jpg",
		200, 137,
		"GBB-WA-92UI", "Western Arms Beretta 92FS Ultimate Edition Inox",
		"Western Arms Beretta 92FS Ultimate Edition Inox", "",
		"169.95", "1",
		"1", 1,
		"Pieces", "13",
		"", "pd737005305.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/tn_gbb-wa-s40.jpg",
		197, 150,
		"GBB-WA-S40", "Western Arms S&amp;W Sigma .40",
		"S&amp;W Sigma .40 blowback airsoft pistol", "",
		"200", "1",
		"1", 1,
		"Pieces", "13",
		"", "pd-385019441.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/tn_ar-aa-s200.jpg",
		200, 59,
		"AR-AA-S200", "Air Arms S200",
		"Precharged Air Rifle", "",
		"249.95", "2.8",
		"1", 1,
		"Pieces", "3",
		"", "pd1046948943.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/tn_ar-asi-huncam.jpg",
		200, 55,
		"AR-ASI-HUNT", "ASI Hunter kit",
		"", "",
		"195", "3",
		"1", 1,
		"Pieces", "3",
		"Stock;Real Tree@", "pd-981780661.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/tn_ar-asi-qui.jpg",
		200, 55,
		"AR-ASI-QUI", "ASI Quickshot",
		"Break Barrel Air Rifle kit", "",
		"189.95", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-1989559695.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/tn_ar-rws-ex.jpg",
		200, 63,
		"AR-RWS-EXC", "RWS Excalibre Carbine",
		"Precharged Air Rifle", "",
		"449.95", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd-969802867.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/tn_ar-rws-scim.jpg",
		200, 54,
		"AR-RWS-SCI", "RWS Scimitar",
		"Precharged Air Rifle", "",
		"475", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd867229827.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/tn_ar-smk-b2.jpg",
		200, 44,
		"AR-SMK-B2", "SMK B2 Standard",
		"", "",
		"34.95", "1.8",
		"1", 1,
		"Pieces", "3",
		"Calibre;.177@", "pd-1028823447.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/tn_ar-smk-b2c.jpg",
		200, 47,
		"AR-SMK-B2C", "SMK B2 Custom",
		"", "",
		"59.95", "1.7",
		"1", 1,
		"Pieces", "3",
		"Calibre;.177@", "pd-277465409.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/tn_cor-co-rs.jpg",
		200, 62,
		"AR-CO-RS", "Crosman Rabbitstopper",
		"CO2 Air Rifle", "",
		"146.95", "1.75",
		"1", 1,
		"Pieces", "3",
		"", "pd-93108037.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/tn_cor-cr-1077.jpg",
		200, 57,
		"AR-CO-1077", "Crosman 1077",
		"", "",
		"104.95", "1.5",
		"1", 1,
		"Pieces", "3",
		"Stock;Plastic@", "pd-311957151.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/tn_cor-cr-rt.jpg",
		200, 68,
		"AR-CO-RC", "Crosman RatCatcher",
		"CO2 Air Rifle", "",
		"104.95", "1.5",
		"1", 1,
		"Pieces", "3",
		"", "pd1975079543.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/tn_cor-wal-win.jpg",
		200, 55,
		"AR-WAL-WIN", "Walther Winchester",
		"CO2 Air Rifle", "",
		"245", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1475901821.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/tn_aa-tx200.jpg",
		200, 44,
		"AR-AA-TX200", "Air Arms TX200 MkIII",
		"Underlever Air Rifle", "",
		"249.95", "3.5",
		"1", 1,
		"Pieces", "3",
		"", "pd1046950258.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/thumb/tn_bsa-met.jpg",
		200, 55,
		"AR-BSA-MET", "BSA Meteor",
		"Break Barrel Air Rifle", "",
		"119.95", "3.5",
		"1", 1,
		"Pieces", "3",
		"", "pd95223024.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/tn_bsa-sup.jpg",
		200, 53,
		"AR-BSA-SUP", "BSA Superstar",
		"Underlever Air Rifle", "",
		"249.95", "4.5",
		"1", 1,
		"Pieces", "3",
		"", "pd-1229198178.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/tn_bsa-supsp.jpg",
		200, 55,
		"AR-BSA-SUPSP", "BSA SuperSport",
		"Break Barrel Air Rifle", "",
		"149.95", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd-2135729156.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/tn_web-lon.jpg",
		200, 51,
		"AR-WEB-LON", "Webley Longbow",
		"Break Barrel Air Rifle", "",
		"209.95", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd227156936.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/tn_web-str.jpg",
		200, 53,
		"AR-WEB-STR", "Webley Stingray",
		"Break Barrel Air Rifle", "",
		"169.95", "3.5",
		"1", 1,
		"Pieces", "3",
		"Stock;Beech@", "pd441831222.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/tn_web-tom.jpg",
		200, 49,
		"AR-WEB-TOM", "Webley Tomahawk",
		"Break Barrel Air Rifle", "",
		"219.95", "3.4",
		"1", 1,
		"Pieces", "3",
		"", "pd277831764.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/tn_web-xo.jpg",
		200, 56,
		"AR-WEB-XO", "Webley Xocet",
		"Break Barrel Air Rifle", "",
		"144.95", "3.5",
		"1", 1,
		"Pieces", "3",
		"", "pd305794722.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/tn_web-xoxs.jpg",
		200, 55,
		"AR-WEB-XOXS", "Webley Xocet XS",
		"Break Barrel Air Rifle", "",
		"169.95", "3.6",
		"1", 1,
		"Pieces", "3",
		"", "pd-1803952736.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/tn_wh-hw97k.jpg",
		200, 68,
		"AR-WH-HW97K", "Weihrauch HW97K",
		"Underlever Air Rifle", "",
		"285", "3.5",
		"1", 1,
		"Pieces", "3",
		"", "pd976256206.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/tn_ap-bgt-gnat.jpg",
		200, 106,
		"AP-BGT-GNAT", "Webley Gnat",
		"Spring cocking air pistol", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "0",
		"", "pd1047033387.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/tn_ap-bgt-s2.jpg",
		200, 99,
		"AP-BGT-S2", "Budget S2 air pistol",
		"", "",
		"24.95", "1.3",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd1985459943.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/thumb/tn_ap-smk-g10.jpg",
		200, 127,
		"AP-SMK-G10", "SMK G10",
		"", "",
		"27.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd549870435.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/thumb/tn_ap-smk-g2000.jpg",
		200, 126,
		"AP-SMK-G2000", "SMK G2000",
		"Spring Cocking air pistol", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd-458302391.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/tn_ap-smk-g2005.jpg",
		200, 116,
		"AP-SMK-G2005", "SMK G2005 Special Edition",
		"", "",
		"37.95", "1.3",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd936386463.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/tn_ap-web-hur.jpg",
		200, 119,
		"AP-WEB-HUR", "Webley Hurricane",
		"", "",
		"95.95", "1.2",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd-1587840191.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/tn_ap-web-tem.jpg",
		200, 120,
		"AP-WEB-HUR", "Webley Tempest",
		"", "",
		"89.95", "1.1",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd-230508713.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/tn_ap-web-nem.jpg",
		200, 116,
		"AP-WEB-NEM", "Webley Nemesis",
		"", "",
		"85.95", "1",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd-1907601095.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/tn_ap-web-stg.jpg",
		200, 103,
		"AP-WEB-STG", "Webley Stinger",
		"", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd685362901.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/tn_co-an-101m.jpg",
		200, 124,
		"CO-AN-A101M", "Anics A101 Magnum",
		"CO2 air pistol", "",
		"69.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1047483260.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/thumb/tn_co-an-a101.jpg",
		196, 150,
		"CO-AN-A101", "Anics A101",
		"CO2 air pistol", "",
		"69.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd231396874.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/thumb/tn_co-an-a112.jpg",
		200, 139,
		"CO-AN-A112", "Anics A112",
		"CO2 air pistol", "",
		"79.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd2133889864.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/thumb/tn_co-an-3000.jpg",
		194, 150,
		"CO-AN-A3000", "Anics 3000 SKIF",
		"", "",
		"109.95", "0.9",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-1454941981.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/tn_co-go-a45.jpg",
		200, 140,
		"CO-GO-A45", "Gamo Auto45",
		"CO2 air pistol", "",
		"59.95", "0.7",
		"1", 1,
		"Pieces", "0",
		"", "pd-522316343.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/tn_co-go-p23.jpg",
		200, 150,
		"CO-GO-P23", "Gamo P23",
		"CO2 air pistol", "",
		"49.95", "0.5",
		"1", 1,
		"Pieces", "0",
		"", "pd751301919.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/tn_co-go-pt80.jpg",
		196, 150,
		"CO-GO-PT80", "Gamo PT80",
		"CO2 air pistol", "",
		"64.95", "0.7",
		"1", 1,
		"Pieces", "0",
		"", "pd-1700430747.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/tn_co-go-pt80l.jpg",
		200, 134,
		"CO-GO-PT80L", "Gamo PT80 Laser sighted",
		"CO2 air pistol", "",
		"109.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd-437211877.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/tn_co-go-r77c.jpg",
		200, 138,
		"CO-GO-R77", "Gamo R77C revolver",
		"CO2 air pistol", "",
		"69.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1047486081.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/tn_co-go-r77cc.jpg",
		198, 150,
		"CO-GO-R77CC", "Gamo R77CC revolver",
		"CO2 air pistol", "",
		"69.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1155419287.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/tn_co-go-r77cl.jpg",
		200, 125,
		"CO-GO-R77L", "Gamo R77C revolver with built in Laser sight",
		"CO2 air pistol", "",
		"109.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"", "pd1625981085.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/tn_co-cr-2240.jpg",
		200, 111,
		"CO-CR-2240", "Crosman 2240",
		"CO2 air pistol", "",
		"109.95", "0.9",
		"1", 1,
		"Pieces", "0",
		"", "pd1047554845.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/tn_co-cr-357w.jpg",
		200, 117,
		"CO-CR-357W", "Crosman 357W",
		"", "",
		"79.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"Barrel Length;4 inch@", "pd-1343702507.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/tn_co-cr-cb40.jpg",
		172, 150,
		"CO-CR-CB40L", "Crosman CB40 Laser sighted",
		"CO2 air pistol", "",
		"159.95", "1.1",
		"1", 1,
		"Pieces", "0",
		"", "pd-476650933.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/tn_co-cr-ck92.jpg",
		200, 145,
		"CO-CR-CK92", "Crosman CK92",
		"CO2 air pistol", "",
		"135", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd-180789903.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/tn_co-cr-p38.jpg",
		200, 136,
		"CO-CR-338", "Crosman 338",
		"CO2 air pistol", "",
		"49.95", "0.7",
		"1", 1,
		"Pieces", "0",
		"", "pd344335623.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/tn_co-sh-sh.jpg",
		200, 125,
		"CO-SH-SH", "Benjamin Sheridan Pro Hunter",
		"CO2 air pistol", "",
		"109.95", "0.8",
		"1", 1,
		"Pieces", "0",
		"Calibre;.177@", "pd-2065098744.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/tn_co-go-mkv.jpg",
		179, 150,
		"CO-MAK", "Makarov MP654K",
		"CO2 air pistol", "",
		"109.95", "0.75",
		"1", 1,
		"Pieces", "0",
		"", "pd52959380.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/tn_pellet (20).jpg",
		118, 150,
		"AMMO-PLET", "CO2 Powerlets",
		"CO2 Powerlets", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "25",
		"Amount;Pack of 10@", "pd-24921056.htm",
		"", 1,
		"Gas", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/tn_blank.jpg",
		159, 150,
		"BF-8mm-1", "Tub of 50 8mm blank rounds",
		"Tub of 50 8mm blank rounds", "",
		"14.95", "0.5",
		"1", 1,
		"Pieces", "24",
		"", "pd823822984.htm",
		"", 1,
		"blank", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/tn_blank (2).jpg",
		155, 150,
		"BF-22L-1", "Tub of 100 .22 long blanks",
		"Tub of 100 .22 long blanks", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "24",
		"", "pd1470404284.htm",
		"", 1,
		"blank", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/tn_blank (3).jpg",
		154, 150,
		"BF-9mm-1", "Tub of 50 9mm (.380) blanks",
		"Tub of 50 9mm (.380) blanks", "",
		"11.95", "0.5",
		"1", 1,
		"Pieces", "24",
		"", "pd1390384118.htm",
		"", 1,
		"blank", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/tn_blank (4).jpg",
		173, 150,
		"BF-22S-1", "Tub of 100 .22 short blanks",
		"Tub of 100 .22 short blanks", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "24",
		"", "pd1927727946.htm",
		"", 1,
		"blank", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/tn_blank (1).jpg",
		200, 117,
		"BF-9MMP-1", "Pack of 25 9mm Parabellum blanks",
		"Pack of 25 9mm Parabellum blanks", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "24",
		"", "pd1047743379.htm",
		"", 1,
		"blank", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/tn_ammo.jpg",
		183, 150,
		"AMMO-IRS", "Inert Rounds",
		"A selection of inert bullets", "",
		"1.25", "0.01",
		"1", 1,
		"Pieces", "26",
		"Calibre;.30 Carbine@", "pd467065758.htm",
		"", 1,
		"inert", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/tn_dummy13.jpg",
		200, 125,
		"AMMO-762B", "7.62mm ammunition belt (inert rounds)",
		"7.62mm ammunition belt (inert rounds)", "",
		"22.95", "2",
		"1", 1,
		"Pieces", "26",
		"", "pd-2043814841.htm",
		"", 1,
		"inert", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/tn_blank (2).jpg",
		155, 150,
		"BF-22L", "Tub of 100 .22 long blanks",
		"Tub of 100 .22 long blanks", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "35",
		"", "pd-1813982245.htm",
		"", 1,
		"blanks", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/tn_co-um-924nw.jpg",
		200, 134,
		"CO-UM-92", "Umarex Beretta 92F 4&quot;",
		"", "",
		"109.95", "1.2",
		"1", 1,
		"Pieces", "0",
		"Finish;Black with plastic grips@", "pd-486153601.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/tn_co-um-926bw.jpg",
		200, 112,
		"CO-UM-926", "Umarex Beretta 92F 6&quot; Compensated",
		"", "",
		"139.95", "1.2",
		"1", 1,
		"Pieces", "0",
		"Finish;Black with plastic grips@", "pd301902021.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/tn_co-um-884bb.jpg",
		200, 148,
		"CO-UM-P88", "Umarex Walther CP88 4&quot;",
		"", "",
		"99.95", "1",
		"1", 1,
		"Pieces", "0",
		"Finish;Black with plastic grips@", "pd1685385139.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/tn_co-um886nw.jpg",
		200, 126,
		"CO-UM-P886", "Umarex Walther CP88 6&quot; Competition",
		"", "",
		"129.95", "1.1",
		"1", 1,
		"Pieces", "0",
		"Finish;Black with plastic grips@", "pd-669904367.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/tn_co-rws-2254n.jpg",
		200, 147,
		"CO-RWS-C225", "RWS Sig C225 4&quot; .177",
		"", "",
		"99.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-748024993.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/tn_co-rws-2256b.jpg",
		200, 116,
		"CO-RWS-C2256", "RWS Sig C225 6&quot; .177",
		"", "",
		"119.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-945759465.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/tn_co-rws-tgtb.jpg",
		188, 150,
		"CO-RWS-C225T", "RWS Sig C225 .177 Target set",
		"", "",
		"269.95", "1.7",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd1206662905.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/tn_co-um-686n4.jpg",
		200, 133,
		"CO-UM-686", "Umarex S&amp;W 686 4&quot; .177 revolver",
		"", "",
		"139.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-1071255714.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/tn_co-um-686n6.jpg",
		200, 113,
		"CO-UM-686", "Umarex S&amp;W 686 6&quot; .177 revolver",
		"", "",
		"139.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-1851777860.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/tn_co-um-686b8.jpg",
		200, 109,
		"CO-UM-686", "Umarex S&amp;W 686 8&quot; .177 revolver",
		"", "",
		"149.95", "1",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-1207275384.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/tn_web (9).jpg",
		168, 150,
		"TAC-BHI-UAV", "Blackhawk Urban Assault Vest",
		"Tactical Urban operations vest", "",
		"249.95", "1.4",
		"1", 1,
		"Pieces", "119",
		"", "pd-515473739.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/thumb/tn_web (14).jpg",
		181, 150,
		"TAC-BHI-MP5", "Blackhawk Industries MP5 chest rig",
		"Chest rig for MP5", "",
		"109.95", "1",
		"1", 1,
		"Pieces", "119",
		"", "pd1048331980.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/thumb/tn_binos (1).jpg",
		200, 141,
		"SCO-BINO-SPOT", "Spotting Scope",
		"", "",
		"200", "1.3",
		"1", 1,
		"Pieces", "108",
		"Options;With Tripod@", "pd-203262720.htm",
		"", 1,
		"BINO", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/tn_binos (2).jpg",
		200, 201,
		"SCO-BINO-MON", "8x21 Monocular",
		"", "",
		"29.95", "0.2",
		"1", 1,
		"Pieces", "108",
		"", "pd836826380.htm",
		"", 1,
		"BINO", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/tn_binos (3).jpg",
		200, 183,
		"SCO-BINO-SIM821", "Simmons 8x21 Binoculars",
		"", "",
		"39.95", "0.4",
		"1", 1,
		"Pieces", "108",
		"", "pd1203343898.htm",
		"", 1,
		"BINO", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/tn_binos (4).jpg",
		200, 179,
		"SCO-BINO-SIM1025", "Simmons 10x25 Binoculars",
		"", "",
		"49.95", "0.4",
		"1", 1,
		"Pieces", "108",
		"", "pd1367076312.htm",
		"", 1,
		"BINO", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/tn_nvg (1).jpg",
		200, 152,
		"NVG-HEL1", "Helios 01",
		"Compact Night Vision scope", "",
		"399.95", "0.95",
		"1", 1,
		"Pieces", "110",
		"", "pd382920646.htm",
		"", 1,
		"NVG", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/tn_jacket (4).jpg",
		191, 150,
		"DES-JAC", "British 2-tone Desert Jacket",
		"", "",
		"12.95", "0.6",
		"1", 1,
		"Pieces", "61",
		"Size;L@Length;Long@", "pd-389825319.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/tn_trousers (3).jpg",
		98, 150,
		"DES-TRO", "British 2-tone Desert Trousers",
		"", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "61",
		"Size;M@Leg Length;Long@", "pd-483380561.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/tn_dstflak.jpg",
		200, 177,
		"DES-BVC", "British 2-tone Desert Flak vest cover",
		"", "",
		"14.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd-1351148676.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/tn_chcchiptrs.jpg",
		163, 200,
		"DES-BDUJ", "U.S. Desert &quot;Chocolate Chip&quot; BDU trousers",
		"", "",
		"34.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@Leg Length;Long@", "pd-232164526.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/thumb/tn_dstchcchpjkt.jpg",
		200, 165,
		"DES-BDUJ", "U.S. Desert &quot;Chocolate Chip&quot; BDU jacket",
		"", "",
		"34.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@Length;Long@", "pd1533317584.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/thumb/tn_trousers (5).jpg",
		114, 150,
		"DES-BDUTPG", "U.S. Desert Tricolour BDU trousers",
		"", "",
		"34.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@Leg Length;Long@", "pd-667477094.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/thumb/tn_jacket (6).jpg",
		165, 150,
		"DES-BDUJT", "U.S. Desert Tricolour BDU jacket",
		"", "",
		"34.95", "0.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@Length;Long@", "pd1048687296.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/tn_bia3.JPG",
		200, 145,
		"TAC-BIA-THE", "Bianchi Tactical Hip Extender",
		"Hip extender for use with the M12", "",
		"35", "0.4",
		"1", 1,
		"Pieces", "121",
		"", "pd-2100212609.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/tn_web (16).jpg",
		101, 150,
		"TAC-BHI-SPO", "Blackhawk Special Operations holster",
		"Special Operations holster", "",
		"89.95", "0.8",
		"1", 1,
		"Pieces", "121",
		"Color;Black@", "pd-95371971.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/tn_knife (14).jpg",
		200, 135,
		"KNI-KABARS", "Ka-Bar short version",
		"", "",
		"59.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd1051261257.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/tn_fskabar.jpg",
		200, 150,
		"KNI-KABARF", "Ka-Bar full-size, USMC version",
		"", "",
		"69.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd137069727.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/tn_survivalknife.jpg",
		200, 150,
		"KVI-MOD", "British Army Survival knife",
		"", "",
		"69.95", "0.3",
		"1", 1,
		"Pieces", "88",
		"", "pd377591781.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/tn_scrim (3).jpg",
		200, 134,
		"DES-SHE", "Shemagh",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "62",
		"Color;Sand & Black@", "pd-1163487475.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/tn_helmet (7).jpg",
		200, 106,
		"DES-HELMCC", "U.S Desert &quot;Choc Chip&quot; Helmet cover",
		"", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "62",
		"Size;L@", "pd1048853795.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/tn_dentalkit.jpg",
		200, 238,
		"FA-DENTAL-1", "Dental First Aid Kit",
		"Emergency Dental kit", "",
		"9.95", "0.4",
		"1", 1,
		"Pieces", "47",
		"", "pd-1499944905.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/tn_compactfirstaidkit.jpg",
		200, 150,
		"FA-FACK-1", "First Aid Compact Kit",
		"Compact First Aid Pack", "",
		"14.95", "0.6",
		"1", 1,
		"Pieces", "47",
		"", "pd-146356931.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/tn_pellet.jpg",
		156, 150,
		"AMMO-RWS-1", "RWS Geco flat top pellet .177 (pack of 500)",
		"RWS Geco flat top pellet .177 (pack of 500)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "4",
		"", "pd-602964114.htm",
		"", 1,
		"ARAM", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM177-2", "Bisley Premier .177 pointed pellets (500 pack)",
		"Bisley Premier .177 pointed pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd-1959630004.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/tn_pellet (36).jpg",
		172, 150,
		"AMMO-PREM22-2", "Bisley Premier .22 pointed pellets (200 pack)",
		"Bisley Premier .22 pointed pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd599323226.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF-2", "Bisley Superfield .177 round head pellets (500 pack)",
		"Bisley Superfield .177 round head pellets (500 pack)", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd1547913240.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/tn_pellet (10).jpg",
		169, 150,
		"AMMO-BISF22-2", "Bisley Superfield .22 round head pellets (200 pack)",
		"Bisley Superfield .22 round head pellets (200 pack)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd1347079174.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/tn_pellet (15).jpg",
		156, 150,
		"AMMO-BD-2", "Bulldog .22 round head pellet (500 rounds)",
		"Bulldog .22 round head pellet (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd1727392164.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP177-2", "Crosman Accupell .177 (500 rounds)",
		"Crosman Accupell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd-913377166.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/tn_pellet (30).jpg",
		159, 150,
		"AMMO-AP22-2", "Crosman Accupell .22 (500 rounds)",
		"Crosman Accupell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd508959728.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/tn_pellet (22).jpg",
		162, 150,
		"AMMO-ALL177-2", "Crosman Co2Pell alloy head, plastic skirt .177",
		"Crosman Co2Pell alloy head, plastic skirt .177", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd723919774.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/tn_pellet (18).jpg",
		132, 150,
		"AMMO-CBSP-2", "Crosman Copperhead .177 BB Speedloader + 1000 BBs",
		"Crosman Copperhead .177 BB Speedloader + 1000 BBs", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd-1876661508.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/tn_pellet (3).jpg",
		115, 150,
		"AMMO-CB1500-2", "Crosman Copperhead .177 BBs (1500 rounds)",
		"Crosman Copperhead .177 BBs (1500 rounds)", "",
		"5.5", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd628341130.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/tn_pellet (4).jpg",
		149, 150,
		"AMMO-CB435-2", "Crosman Copperhead .177 BBs (435 rounds)",
		"Crosman Copperhead .177 BBs (435 rounds)", "",
		"2.5", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd1604461256.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/tn_pellet (24).jpg",
		115, 150,
		"AMMO-CB600-2", "Crosman Copperhead .177 BBs (600 rounds)",
		"Crosman Copperhead .177 BBs (600 rounds)", "",
		"2.99", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd-1521883594.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP177-2", "Crosman Matchpell .177 (500 rounds)",
		"Crosman Matchpell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd1696419668.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/tn_pellet (12).jpg",
		162, 150,
		"AMMO-MP22-2", "Crosman Matchpell .22 (500 rounds)",
		"Crosman Matchpell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd777360802.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/tn_pellet (16).jpg",
		147, 150,
		"AMMO-CP177-2", "Crosman Powapell .177 (500 rounds)",
		"Crosman Powapell .177", "",
		"6.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd-1103315808.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/tn_pellet (28).jpg",
		158, 150,
		"AMMO-CP22-2", "Crosman Powapell .22 (500 rounds)",
		"Crosman Powapell .22", "",
		"7.95", "0.4",
		"1", 1,
		"Pieces", "1",
		"", "pd340423630.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD177-2", "Crosman Premier Domed .177 (1250 pack)",
		"Crosman Premier Domed .177 (1250 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "1",
		"", "pd-619972948.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD22-2", "Crosman Premier Domed .22 (625 pack)",
		"Crosman Premier Domed .22 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "1",
		"", "pd-19993414.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/tn_pellet (27).jpg",
		151, 150,
		"AMMO-ELY22-2", "Eley Wasps .22 round head pellets (500 rounds)",
		"Eley Wasps .22 round head pellets (500 rounds)", "",
		"4.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"Calibre;5.5mm@", "pd-741914248.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/tn_pellet (21).jpg",
		160, 150,
		"AMMO-PD20-2", "Crosman Premier Domed .20 (625 pack)",
		"Crosman Premier Domed .20 (625 pack)", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "1",
		"", "pd-467129242.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/tn_pellet (11).jpg",
		156, 150,
		"AMMO-ELY177-2", "Eley Wasps .177 round head pellets (500 rounds)",
		"Eley Wasps .177 round head pellets (500 rounds)", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd325566724.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/tn_pellet (17).jpg",
		153, 150,
		"AMMO-JETS22-2", "Hustler Jets .22 pointed pellets (500 rounds)",
		"Hustler Jets .22 pointed pellets (500 rounds)", "",
		"4.5", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd1722162898.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD177-2", "Lazapell .177 Domed pellet (500 rounds)",
		"Lazapell .177 Domed pellet (500 rounds)", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd586099024.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/tn_pellet (14).jpg",
		150, 150,
		"AMMO-LPD22-2", "Lazapell .22 Domed pellet (500 rounds)",
		"Lazapell .22 Domed pellet (500 rounds)", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "1",
		"", "pd1087336446.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/tn_pellet (29).jpg",
		157, 150,
		"AMMO-MKS22-2", "Marksman .22 pointed pellets",
		"Marksman .22 pointed pellets", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd561253980.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/tn_pellet (33).jpg",
		149, 150,
		"AMMO-MKS177-2", "Marksman .177 pointed pellets",
		"Marksman .177 pointed pellets", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd743279594.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/tn_pellet (34).jpg",
		163, 150,
		"AMMO-MKS1177-2", "Marksman .177 No.1 round head pellets (500 rounds)",
		"Marksman .177 No.1 round head pellets (500 rounds)", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd887995432.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/tn_pellet (6).jpg",
		122, 150,
		"AMMO-PROM177-2", "Prometheus MK2 alloy head pellet .177 (125 rounds)",
		"Prometheus MK2 alloy head pellet .177 (125 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd1872273046.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/tn_pellet (5).jpg",
		117, 150,
		"AMMO-PROM22-2", "Prometheus MK2 alloy head pellet .22 (100 rounds)",
		"Prometheus MK2 alloy head pellet .22 (100 rounds)", "",
		"5.5", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd-4178252.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/tn_pellet.jpg",
		156, 150,
		"AMMO-RWS-2", "RWS Geco flat top pellet .177 (pack of 500)",
		"RWS Geco flat top pellet .177 (pack of 500)", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "1",
		"", "pd-27028478.htm",
		"", 1,
		"APAMM", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/tn_telesightt (5).jpg",
		200, 78,
		"SCO-856SS-1", "8x56 Super Scope",
		"", "",
		"69.95", "1.1",
		"1", 1,
		"Pieces", "5",
		"", "pd-1534772735.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/tn_telesightt (2).jpg",
		200, 111,
		"SCO-SIM-W15520-1", "Simmons 1.5-5x20 Compact Nightview",
		"", "",
		"99.95", "0.4",
		"1", 1,
		"Pieces", "5",
		"", "pd-2040163305.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/tn_telesightt (15).jpg",
		200, 92,
		"SCO-SIM-3940-1", "Simmons 3-9x40WA",
		"", "",
		"49.95", "0.4",
		"1", 1,
		"Pieces", "5",
		"", "pd-546237411.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/images/nopicture.gif",
		55, 38,
		"SCO-SIM-3950-1", "Simmons 3-9x50WA",
		"", "",
		"69.95", "0.3",
		"1", 1,
		"Pieces", "5",
		"", "pd-232395885.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/tn_telesightt (22).jpg",
		200, 150,
		"SCO-SIM-420-1", "Simmons 4x20 Rimfire ",
		"", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "5",
		"", "pd390309881.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/tn_telesightt (10).jpg",
		200, 101,
		"SCO-SIM-432-1", "Simmons 4x32WA",
		"", "",
		"34.95", "0.3",
		"1", 1,
		"Pieces", "5",
		"", "pd-1919249713.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/tn_telesightt (3).jpg",
		200, 88,
		"SCO-SIM-W440-1", "Simmons 4x40 Nightview",
		"", "",
		"89.95", "0.4",
		"1", 1,
		"Pieces", "5",
		"", "pd-1437291.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/tn_telesightt (16).jpg",
		200, 98,
		"SCO-SIM-440-1", "Simmons 4x40WA",
		"", "",
		"39.95", "0.5",
		"1", 1,
		"Pieces", "5",
		"", "pd191235531.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/tn_pellet (20).jpg",
		118, 150,
		"AMMO-PLET", "CO2 Powerlets",
		"CO2 Powerlets", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "2",
		"Amount;Pack of 10@", "pd-1291359138.htm",
		"", 1,
		"CO2POWER", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/tn_mounts.jpg",
		200, 113,
		"MOU-BGT2-1", "Economy 2-piece scope mounts",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd-1187927831.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/tn_mounts (2).jpg",
		200, 385,
		"MOU-NS1-1", "Nikko Sterling 1-piece scope mount",
		"", "",
		"14.95", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd919485759.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/tn_mounts (1).jpg",
		200, 420,
		"MOU-PRO1", "One Piece Pro-Mount",
		"", "",
		"29.95", "0.1",
		"1", 1,
		"Pieces", "5",
		"Variant;PRO-26 - twin screw, 56mm@", "pd1523679621.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/tn_mounts (3).jpg",
		200, 427,
		"MOU-PROB-1", "Pro-Bloks",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "5",
		"", "pd1706731767.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/thumb/tn_mounts (1).jpg",
		200, 420,
		"MOU-PRO2", "Two Piece Pro-Mount",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "5",
		"Variant;PRO-2 - single screw, 40mm@", "pd-1427917827.htm",
		"", 1,
		"SCOPES", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/tn_1000bst1.jpg",
		97, 150,
		"AS-ACC-1000tb-1-6", "Airsoft BB ballshot - 1000 round speedloader",
		"6mm Speedloader containing 1000 mid-weight BBs", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "92",
		"", "pd-366959697.htm",
		"", 1,
		"MINAMMO", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/thumb/tn_0122000.jpg",
		66, 150,
		"AS-ACC-0122000-2-6", "Airsoft BB ballshot - 0.12g tub of 2000",
		"Speedloader of 2000 lightweight 6mm BBs", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "92",
		"", "pd1550191989.htm",
		"", 1,
		"MINAMMO", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/images/nopicture.gif",
		55, 38,
		"WW2-VIC", "British Victoria Cross",
		"", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd1235846467.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-WW1", "German WW1 Anti-Partisan combat badge",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd-1661687802.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/tn_knife (1).jpg",
		139, 150,
		"KNI-PS-1", "Gerber Pocket Sharpener",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "89",
		"", "pd1051180918.htm",
		"", 1,
		"SHARP", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/tn_knife (11).jpg",
		64, 150,
		"KNI-GDKS-1", "Gerber Diamond knife sharpener",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "89",
		"", "pd1680591508.htm",
		"", 1,
		"SHARP", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/tn_knife.jpg",
		79, 150,
		"KNI-BTECH-1", "Bladetech knife sharpener",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "89",
		"", "pd-1026719006.htm",
		"", 1,
		"SHARP", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/tn_knife (12).jpg",
		97, 150,
		"KNI-HON-1", "Honing Oil",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "89",
		"", "pd2009295840.htm",
		"", 1,
		"SHARP", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/tn_knife (2).jpg",
		80, 150,
		"KNI-SSS-1", "Small Sharpening stone with case",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "89",
		"", "pd-2042252018.htm",
		"", 1,
		"SHARP", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/images/nopicture.gif",
		55, 38,
		"SILVA-CMC-1", "Silva Compact Map Case",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "95",
		"", "pd2024576637.htm",
		"", 1,
		"MAPCASE", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/images/nopicture.gif",
		55, 38,
		"NAV-RMC", "Raven Map Case",
		"", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "95",
		"Color;Black@", "pd1634383091.htm",
		"", 1,
		"MAPCASE", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/tn_bia.JPG",
		200, 171,
		"TAC-BA-M12-1", "Bianchi M12 holster",
		"Universal Military Holster", "",
		"69.95", "0.5",
		"1", 1,
		"Pieces", "121",
		"", "pd771735541.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/tn_bia2.JPG",
		200, 148,
		"TAC-BIA-MMP-1", "Bianchi Military Magazine pouch",
		"Dual magazine pouch", "",
		"29.95", "0.4",
		"1", 1,
		"Pieces", "121",
		"", "pd320569681.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/tn_web (16).jpg",
		101, 150,
		"TAC-BHI-SPO-1", "Blackhawk Special Operations pistol mag pouch",
		"Special Operations mag pouch", "",
		"34.95", "0.1",
		"1", 1,
		"Pieces", "121",
		"Color;Black@", "pd-1304401591.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/images/nopicture.gif",
		55, 38,
		"KNI-SA80", "SA80 Bayonet",
		"", "",
		"89.95", "0.2",
		"1", 1,
		"Pieces", "88",
		"", "pd-1012386661.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/tn_cigarknife.jpg",
		200, 150,
		"KNI-CIG", "Cigar Knife",
		"", "",
		"19.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd2100967489.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/images/nopicture.gif",
		55, 38,
		"KNI-BLTI", "Black Tiger lock knife",
		"", "",
		"12.5", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd898874455.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/thumb/tn_eagleknife.jpg",
		200, 150,
		"KNI-EAG", "Eagle lock knife",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd992245341.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/images/nopicture.gif",
		55, 38,
		"KNI-STEE", "Steel grip knife",
		"", "",
		"7.95", "0.1",
		"1", 1,
		"Pieces", "88",
		"", "pd-1115088941.htm",
		"", 1,
		"KNI", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/tn_magbeltclip.jpg",
		200, 254,
		"TOR-BH3D-1", "Belt holder for 6D, 4D and 3D cell Maglites",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "124",
		"", "pd-2090345487.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/tn_mag3.jpg",
		200, 357,
		"TOR-MAG3D", "Maglite 3D Cell",
		"", "",
		"29.95", "0.4",
		"1", 1,
		"Pieces", "124",
		"Color;Black@", "pd-1996306553.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/thumb/tn_biffamag.jpg",
		200, 51,
		"TOR-MAG6D-1", "Maglite 6D Cell",
		"", "",
		"34.95", "0.6",
		"1", 1,
		"Pieces", "124",
		"", "pd1376729065.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/tn_trident.jpg",
		200, 300,
		"TAC-STR-TRI", "Streamlight Trident",
		"Head-mounted LED/Xenon torch", "",
		"34.95", "0.3",
		"1", 1,
		"Pieces", "124",
		"LED Colour;Green@", "pd-162968005.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/tn_Wowtorch.jpg",
		200, 286,
		"TAC-STR-WOW-1", "Streamlight WOW",
		"Flexible hand-held or hands free torch", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "124",
		"", "pd-576278537.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/tn_torcheything.jpg",
		200, 220,
		"TAC-STR-SCO-1", "Streamlight Scorpion",
		"High powered Lithium torch", "",
		"69.95", "0.1",
		"1", 1,
		"Pieces", "124",
		"", "pd1189810941.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/tn_minimag.jpg",
		200, 161,
		"TOR-AAMAG", "AA Mini Maglite Presentation set",
		"", "",
		"16.95", "0.1",
		"1", 1,
		"Pieces", "124",
		"Color;Black@", "pd114965419.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/thumb/tn_micromag.jpg",
		200, 244,
		"TOR-AAASOL", "Maglite Solitarie Presentation set",
		"", "",
		"11.5", "0.1",
		"1", 1,
		"Pieces", "124",
		"Color;Black@", "pd1828746222.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/images/nopicture.gif",
		55, 38,
		"TOR-HURLAN", "Hurricane Lantern",
		"", "",
		"8.95", "0.5",
		"1", 1,
		"Pieces", "124",
		"", "pd1766749132.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/tn_GarratyHL.jpg",
		200, 274,
		"TOR-HL", "Headlamp",
		"", "",
		"11.5", "0.2",
		"1", 1,
		"Pieces", "124",
		"", "pd-2134495526.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/images/nopicture.gif",
		55, 38,
		"TOR-SILHE", "Silva SFM Headlamp",
		"", "",
		"16.5", "0.3",
		"1", 1,
		"Pieces", "124",
		"", "pd-1275799400.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/tn_angletorch2.jpg",
		200, 358,
		"TOR-GIFL", "G.I Angle-head Flashlight",
		"", "",
		"7.5", "0.3",
		"1", 1,
		"Pieces", "124",
		"Color;Olive Green@", "pd-1595571676.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/images/nopicture.gif",
		55, 38,
		"TOR-TGL", "Touch Glow Light",
		"", "",
		"3.99", "0.2",
		"1", 1,
		"Pieces", "124",
		"", "pd-1831189262.htm",
		"", 1,
		"TORC", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/images/nopicture.gif",
		55, 38,
		"TOR-NS400", "Nightsearcher 400 power light",
		"", "",
		"149.95", "3.5",
		"1", 1,
		"Pieces", "125",
		"", "pd-173852642.htm",
		"", 1,
		"SPOTL", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/tn_web (4).jpg",
		191, 150,
		"TAC-AALV", "All Arms Load Vest",
		"", "",
		"139.95", "1",
		"1", 1,
		"Pieces", "119",
		"", "pd1051521852.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/tn_web (1).jpg",
		177, 150,
		"TAC-ARKALL", "Arktis Allen Belt kit",
		"", "",
		"36.95", "0.7",
		"1", 1,
		"Pieces", "119",
		"", "pd-1920435254.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/tn_web (2).jpg",
		200, 125,
		"TAC-ADVCR", "Arktis Advanced Chest Rig",
		"", "",
		"69.95", "1",
		"1", 1,
		"Pieces", "119",
		"", "pd1204137736.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/tn_web (12).jpg",
		131, 150,
		"TAC-58WEB", "58 Pattern webbing full set",
		"", "",
		"29.95", "3",
		"1", 1,
		"Pieces", "119",
		"Spec;Used grade without backpack@", "pd1973543438.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/tn_web (15).jpg",
		139, 150,
		"DES-WHD-1", "Wyvern 2-tone Desert camo holster",
		"", "",
		"29.95", "0.4",
		"1", 1,
		"Pieces", "121",
		"", "pd-1352528148.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/tn_web (5).jpg",
		200, 109,
		"DES-WCRD-1", "Raven 2-tone Desert camo Chest rig",
		"", "",
		"69.95", "0.9",
		"1", 1,
		"Pieces", "119",
		"", "pd1437318906.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/tn_web.jpg",
		151, 150,
		"DES-AAVD-1", "Wyvern All Arms assault vest",
		"", "",
		"159.95", "1",
		"1", 1,
		"Pieces", "119",
		"Color;2-tone Desert DPM camo@", "pd-1238276680.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/tn_web (17).jpg",
		177, 150,
		"HOL-JIM", "Wet-molded Leather shoulder rig for 1911",
		"", "",
		"50", "1",
		"1", 1,
		"Pieces", "121",
		"", "pd1659222831.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/tn_web (6).jpg",
		153, 150,
		"TAC-SAV", "South African Assault Vest",
		"", "",
		"55", "1",
		"1", 1,
		"Pieces", "119",
		"Color;Black@", "pd-354699620.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/tn_DSCF0006.jpg",
		135, 150,
		"NBC-MKIVD", "British MKIV No.1 NBC suit in Desert camo",
		"British MKIV No.1 NBC suit in Desert camo", "",
		"65", "2",
		"1", 1,
		"Pieces", "98",
		"Size;L@", "pd-1337548802.htm",
		"", 1,
		"NBCSUI", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/tn_paintmask.jpg",
		132, 150,
		"AS-ACC-MSK", "Airsoft mask",
		"Protective full-face mask", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "8",
		"", "pd1825873198.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/tn_cat-ammo1.jpg",
		187, 150,
		"CAT-AMMO1", "Barnett .38 Slingshot ammo",
		"Slingshot/Catapult ammo", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "51",
		"", "pd-1421388993.htm",
		"", 1,
		"CATAMM", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/tn_dct-ns-mpl.jpg",
		200, 83,
		"DCTR-MPL", "Walther MPL",
		"Deactivated Walther MPL", "",
		"550", "2.9",
		"1", 1,
		"Pieces", "60",
		"", "pd12446912.htm",
		"", 1,
		"SUBGUN", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/tn_web (10).jpg",
		134, 150,
		"TAC-MF", "Mil-Force Assault Vest",
		"", "",
		"85", "1",
		"1", 1,
		"Pieces", "119",
		"", "pd-1670448197.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/tn_web (8).jpg",
		175, 150,
		"TAC-ARK-RECCE", "Arktis Long Range Reconnaisance Vest",
		"", "",
		"169.95", "1.4",
		"1", 1,
		"Pieces", "119",
		"", "pd1051610188.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/tn_web (3).jpg",
		195, 150,
		"TAC-ARK-DET", "Arktis Detachable pouch vest",
		"", "",
		"139.95", "1.1",
		"1", 1,
		"Pieces", "119",
		"", "pd1274788698.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/tn_web (7).jpg",
		200, 141,
		"TAC-ARK-BMV", "Arktis Marines Battlevest",
		"", "",
		"169.95", "1.4",
		"1", 1,
		"Pieces", "119",
		"", "pd1296513304.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/thumb/tn_arktisbattlevest.jpg",
		200, 199,
		"TAC-ARK-BV", "Arktis Battlevest",
		"", "",
		"109.95", "1.2",
		"1", 1,
		"Pieces", "119",
		"", "pd1603544326.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/tn_paintmask.jpg",
		132, 150,
		"AS-ACC-MSK-1", "Airsoft mask",
		"Airsoft mask", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "67",
		"", "pd-504897166.htm",
		"", 1,
		"FUF", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/tn_safegl.jpg",
		140, 150,
		"AS-ACC-GOG", "Safety Glasses",
		"Safety Glasses", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "66",
		"Color;Amber@", "pd-383279970.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/tn_bigglesgoggles.jpg",
		200, 136,
		"EYE-FLY", "U.S Flyers Goggles",
		"", "",
		"22.95", "0.3",
		"1", 1,
		"Pieces", "66",
		"Frame colour;Black@", "pd-361427333.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/tn_saigonshades.jpg",
		200, 150,
		"EYE-USAF", "U.S.A.F style glasses and case",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "66",
		"Lens colour;Mirror finish@", "pd-866245343.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/tn_bollegoggles.jpg",
		200, 148,
		"EYE-BOLLED", "Bolle Defender goggles",
		"High-quality ballistic/dust goggles by Bolle", "",
		"29.95", "0.2",
		"1", 1,
		"Pieces", "66",
		"", "pd217037432.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/tn_bollegoggles.jpg",
		200, 148,
		"EYE-BOLLED-1", "Bolle Defender goggles",
		"", "",
		"19.95", "0.2",
		"1", 1,
		"Pieces", "61",
		"", "pd-97909402.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/tn_choc_chip_t.jpg",
		183, 150,
		"DES-CHOCYT", "U.S. Desert Choc-Chip T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd-1582646704.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/tn_scrim (4).jpg",
		200, 146,
		"DES-SCRD", "U.S Desert Storm scrim netting",
		"", "",
		"14.95", "0.1",
		"1", 1,
		"Pieces", "62",
		"", "pd-1802179839.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/tn_boots (3).jpg",
		171, 150,
		"DES-BOOTSBR", "British Desert Boots",
		"", "",
		"49.95", "1",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-1022471890.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/tn_boots (12).jpg",
		147, 150,
		"BOOT-HTMC", "Hi-Tec Magnum Classic",
		"", "",
		"59.99", "0.6",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-546902395.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/tn_boots (16).jpg",
		165, 150,
		"BOOT-HTML", "Hi-Tec Magnum Leather",
		"", "",
		"69.99", "0.7",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd414444603.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/tn_boots (12).jpg",
		147, 150,
		"BOOT-HTMS", "Hi-Tec Magnum Sympatex",
		"", "",
		"89.99", "0.7",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd81863633.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/tn_boots (2).jpg",
		167, 150,
		"BOOT-HTPK", "Hi-Tec Peacekeeper",
		"", "",
		"95", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd489757868.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/tn_boots (15).jpg",
		200, 133,
		"BOOT-HTTRA", "Hi-Tec Trail",
		"", "",
		"34.95", "0.6",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-1580226812.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/tn_boots (17).jpg",
		151, 150,
		"BOOT-MATTDH", "Matterhorn Deerhunter ",
		"", "",
		"199.95", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-1514151513.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/tn_boots (7).jpg",
		161, 150,
		"BOOT-MATTGK", "Matterhorn Gamekeeper",
		"", "",
		"189.95", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd1353210925.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/tn_boots (8).jpg",
		176, 150,
		"BOOT-MATTO", "Matterhorn Orion",
		"", "",
		"189.99", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd737442545.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/thumb/tn_boots (6).jpg",
		144, 150,
		"BOOT-MATTFB", "Matterhorn Fort Bragg",
		"", "",
		"209.99", "1",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-1375961465.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/thumb/tn_boots (1).jpg",
		167, 150,
		"BOOT-PRO", "Pro-Boots",
		"", "",
		"99.99", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd1194394283.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/thumb/tn_boots (13).jpg",
		132, 150,
		"BOOT-DMS", "British High-Leg DMS ",
		"", "",
		"45", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd2040575856.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/thumb/tn_boots (14).jpg",
		169, 150,
		"BOOT-HTE", "Hi-Tec Elite",
		"", "",
		"89.99", "1",
		"1", 1,
		"Pieces", "72",
		"Size;10@Type;Cordura Upper@", "pd646538868.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/thumb/tn_bergahusstorm.jpg",
		200, 150,
		"BOOT-BERG", "Berghaus Storm",
		"", "",
		"109.95", "0.5",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd1075808983.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/tn_dannerolympic.jpg",
		200, 150,
		"BOOT-DANNOL", "Danner Olympic",
		"", "",
		"199.95", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd1212813763.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/tn_boots (11).jpg",
		128, 150,
		"WELL-EC", "Wellington Boots",
		"", "",
		"9.95", "1.2",
		"1", 1,
		"Pieces", "76",
		"Size;10@Sex;Mens@", "pd993340075.htm",
		"", 1,
		"WEL", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/thumb/tn_boots (5).jpg",
		117, 150,
		"WEL-HUNT", "Hunter Wellingtons",
		"", "",
		"49.95", "0.9",
		"1", 1,
		"Pieces", "76",
		"Size;10@", "pd631253375.htm",
		"", 1,
		"WEL", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/thumb/tn_boots (10).jpg",
		117, 150,
		"WEL-AIG", "Aigle Wellingtons",
		"", "",
		"49.95", "0.9",
		"1", 1,
		"Pieces", "76",
		"Size;10@", "pd-491860820.htm",
		"", 1,
		"WEL", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/tn_helmet.jpg",
		191, 150,
		"HELM-PASGT", "U.S PASGT Helmet",
		"", "",
		"99", "2",
		"1", 1,
		"Pieces", "83",
		"Size;L@", "pd130242499.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/tn_bollegoggles.jpg",
		200, 148,
		"EYE-BOLLED-2", "Bolle Defender goggles",
		"High-quality ballistic/dust goggles by Bolle", "",
		"29.95", "0.2",
		"1", 1,
		"Pieces", "8",
		"", "pd-264654935.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/tn_Deactpistol (2).jpg",
		200, 135,
		"DCTP-NAM-1", "Nambu WW2 service pistol",
		"Deactivated Nambu ", "",
		"350", "0.9",
		"1", 1,
		"Pieces", "140",
		"", "pd2080728503.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/tn_Deactpistol (13).jpg",
		200, 131,
		"DCTP-GFL-1", "Walther German signal flare pistol, WW2 model",
		"Deactivated German flare pistol", "",
		"265", "0.8",
		"1", 1,
		"Pieces", "140",
		"", "pd21479101.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/tn_Deactpistol.jpg",
		165, 150,
		"DCTP-NAG-1", "Nagant service revolver",
		"Deactivated Nagant service revolver", "",
		"225", "1.3",
		"1", 1,
		"Pieces", "140",
		"", "pd1213404979.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/thumb/tn_Deactpistol (4).jpg",
		200, 112,
		"DCTP-SWV-1", "Smith &amp; Wesson Victory model .38 Special",
		"Deactivated S&amp;W Victory Model", "",
		"285", "1.2",
		"1", 1,
		"Pieces", "140",
		"", "pd948911257.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/thumb/tn_Deactpistol (3).jpg",
		200, 114,
		"DCTP-WEB-1", "Webley MK4 service revolver .38/200",
		"Deactivated Webley Mk4", "",
		"265", "0.9",
		"1", 1,
		"Pieces", "140",
		"", "pd414103663.htm",
		"", 1,
		"WW2PIS", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/thumb/tn_enfield.JPG",
		200, 75,
		"DCTR-ENF-1", "Enfield No.4 .303",
		"Deactivated Enfield No.4 .303", "",
		"225", "4.3",
		"1", 1,
		"Pieces", "141",
		"", "pd1595748405.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/thumb/tn_dct-ns-m1c.jpg",
		200, 49,
		"DCTR-M1C", "Deactivated M1 Carbine",
		"Deactivated M1 Carbine", "",
		"350", "2.5",
		"1", 1,
		"Pieces", "141",
		"Condition;1944 dated, used condition@", "pd-980105877.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/thumb/tn_k98.JPG",
		200, 60,
		"DCTR-K98-1", "Mauser K98",
		"Deactivated Mauser K98", "",
		"225", "4.2",
		"1", 1,
		"Pieces", "141",
		"", "pd-803112409.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/thumb/tn_ruskeyrifle.jpg",
		200, 50,
		"DCTR-MOSIN-1", "Mosin Nagant Carbine",
		"Deactivated Mosin Nagant Carbine", "",
		"275", "3.5",
		"1", 1,
		"Pieces", "141",
		"", "pd129345709.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/thumb/tn_dct-os-enf.jpg",
		200, 43,
		"DCTR-P14-1", "P14 rifle",
		"Deactivated P14 rifle", "",
		"245", "4.4",
		"1", 1,
		"Pieces", "141",
		"", "pd1770836643.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/thumb/tn_thompson.JPG",
		200, 89,
		"DCTR-M1A1-1", "Thompson M1A1",
		"Deactivated Thompson M1A1", "",
		"375", "4.2",
		"1", 1,
		"Pieces", "141",
		"", "pd-435214967.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/thumb/tn_dct-os-sten.jpg",
		200, 59,
		"DCTR-STEN", "Deactivated Sten guns",
		"Deactivated Sten guns", "",
		"525", "2.5",
		"1", 1,
		"Pieces", "141",
		"Model;Mark 2 old spec@", "pd-899249441.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/thumb/tn_ppsh41.JPG",
		200, 92,
		"DCTR-PPSH-1", "PPSH 41 Russian SMG",
		"Deactivated PPSH 41 Russian SMG", "",
		"245", "3.4",
		"1", 1,
		"Pieces", "141",
		"", "pd36187776.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/thumb/tn_lan.jpg",
		200, 67,
		"DCTR-LAN-1", "Lanchester Mk.1",
		"", "",
		"475", "5",
		"1", 1,
		"Pieces", "141",
		"", "pd-452020050.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/thumb/tn_beretta38.JPG",
		200, 64,
		"DCTR-M38-1", "Beretta Model 38",
		"Deactivated Beretta Model 38", "",
		"235", "2.6",
		"1", 1,
		"Pieces", "141",
		"", "pd-1136572788.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/thumb/tn_dct-os-bren.jpg",
		200, 94,
		"DCTR-BREN", "Deactivated Bren guns",
		"Deactivated Bren guns", "",
		"245", "12",
		"1", 1,
		"Pieces", "141",
		"Model;Mark 1@", "pd262684570.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/tn_maxim.JPG",
		200, 133,
		"DCTR-MAXIM-1", "Maxim 1910 heavy machine gun",
		"Deactivated Maxim 1910 heavy machine gun", "",
		"695", "70",
		"1", 1,
		"Pieces", "141",
		"", "pd-1535698609.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/tn_dct-os-mg42.jpg",
		200, 47,
		"DCTR-MG42", "Deactivated MG42 light machine gun w/ Lafette tripod",
		"Deactivated MG42 light machine gun w/ Lafette tripod", "",
		"1195", "25",
		"1", 1,
		"Pieces", "141",
		"Options;Gun & Tripod@", "pd-874251243.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/thumb/tn_dp.JPG",
		200, 118,
		"DCTR-DP-1", "Russian DP LMG",
		"Russian DP LMG", "",
		"525", "12",
		"1", 1,
		"Pieces", "141",
		"", "pd-466801442.htm",
		"", 1,
		"WW2RIF", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/thumb/tn_blank (1).jpg",
		200, 117,
		"BF-9MMP-2", "Pack of 25 9mm Parabellum blanks",
		"Pack of 25 9mm Parabellum blanks", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "35",
		"", "pd648499341.htm",
		"", 1,
		"blanks", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/tn_helmet (1).jpg",
		199, 150,
		"HELM-GSMK6", "British Army GS MK6",
		"Current issue Kevlar helmet", "",
		"35", "1.3",
		"1", 1,
		"Pieces", "83",
		"Size;L@", "pd1863402096.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/tn_helmet (2).jpg",
		183, 150,
		"HELM-PARA", "British Army Para Helmet",
		"", "",
		"95", "0.8",
		"1", 1,
		"Pieces", "83",
		"Size;L@Grade;Used Grade 1@", "pd-1855773228.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/tn_helmet (3).jpg",
		200, 147,
		"HELM-BOMB", "British EOD Helmet",
		"Explosive Ordnance/Bomb Disposal helmet", "",
		"69.95", "2",
		"1", 1,
		"Pieces", "83",
		"", "pd421089314.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/tn_m1helmet.jpg",
		200, 150,
		"HELM-M1", "U.S M1 steel helmet",
		"Vietnam era combat helmet", "",
		"29.95", "2",
		"1", 1,
		"Pieces", "83",
		"Size;L@", "pd1041421902.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/tn_helmet (5).jpg",
		200, 118,
		"HELM-DPMC", "British DPM camouflage cover",
		"DPM cover for GS MK6 helmet", "",
		"9.95", "0.3",
		"1", 1,
		"Pieces", "83",
		"Size;L@Grade;New@", "pd-416194842.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/thumb/tn_helmet (6).jpg",
		200, 137,
		"HELM-BDESC", "British Desert camouflage cover",
		"Desert Camo cover for GS MK6 helmet", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "83",
		"Size;L@", "pd427032427.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/tn_helmet (7).jpg",
		200, 106,
		"DES-HELMCC", "U.S Desert &quot;Choc Chip&quot; Helmet cover",
		"", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "83",
		"Size;L@", "pd-1630781551.htm",
		"", 1,
		"HELM", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/tn_helmet (6).jpg",
		200, 137,
		"HELM-BDESC", "British Desert camouflage cover",
		"Desert Camo cover for GS MK6 helmet", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "62",
		"Size;L@", "pd351440514.htm",
		"", 1,
		"HDSC", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/tn_headgear (16).jpg",
		74, 150,
		"HEAD-TBALA", "T-Hunter Balaclava",
		"Three hole balaclava", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd1360795805.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/tn_headgear (21).jpg",
		68, 150,
		"HEAD-OBALA", "Open-faced Balaclava",
		"Single hole balaclava", "",
		"3.5", "0.3",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd-1790184327.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/tn_headgear (10).jpg",
		200, 145,
		"HEAD-TRAP", "Thermal Trapper hat",
		"", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Size;L@Color;Black@", "pd1704441731.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/tn_headgear (11).jpg",
		200, 143,
		"HEAD-DRILL", "Drill cap",
		"Army style camo hat", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd1445849784.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/tn_headgear (12).jpg",
		200, 150,
		"HEAD-CRAP", "Compton Webb Crap Hat",
		"British DPM issue peaked hat", "",
		"13.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd-1674357230.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/tn_headgear (13).jpg",
		165, 150,
		"HEAD-USDRILL", "U.S Drill cap",
		"American issue peaked cap", "",
		"8.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd-1991442969.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/tn_headgear (3).jpg",
		188, 150,
		"HEAD-CWBO", "Compton Webb Boonie Hat",
		"Genuine issue DPM Bush Hat", "",
		"16.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"Size;55@", "pd1583954752.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/tn_headgear (15).jpg",
		171, 150,
		"HEAD-USH", "Camo Bush Hat",
		"Reproduction boonie hat", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"Size;L@Color;DPM Camouflage@", "pd71879794.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/tn_headgear (14).jpg",
		200, 138,
		"HEAD-CUSB", "Copy U.S Bush hat",
		"Reproduction U.S Boonie hat", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd-206987524.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/tn_headgear (9).jpg",
		200, 149,
		"DES-BOO", "Desert Boonie/Bush Hat used grade",
		"", "",
		"8.95", "0.4",
		"1", 1,
		"Pieces", "81",
		"Size;54@", "pd1724648842.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/tn_headgear (9).jpg",
		200, 149,
		"DES-BOON", "Desert Boonie/Bush Hat, Brand new",
		"", "",
		"16.95", "0.4",
		"1", 1,
		"Pieces", "81",
		"Size;54@", "pd-1886583980.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/tn_scrim (3).jpg",
		200, 134,
		"DES-SHE", "Shemagh",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "81",
		"Color;Blue & White@", "pd1162250190.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/tn_headgear (2).jpg",
		200, 130,
		"HEAD-DIG", "Aussie Digger Hat",
		"", "",
		"6.95", "0.7",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd1002833681.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/tn_headgear (19).jpg",
		100, 150,
		"HEAD-PBALA", "Peaked Balaclava",
		"Single hole Balaclava with peak", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "81",
		"", "pd-1049270361.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/tn_headgear (4).jpg",
		96, 150,
		"HEAD-THBALA", "Thinsulate Balaclava",
		"Three hole Balaclava with extra warm lining", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "81",
		"", "pd917590573.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/tn_headgear (17).jpg",
		148, 150,
		"HEAD-COM", "Commando caps",
		"British watch cap", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd-1625453948.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/tn_headgear (1).jpg",
		155, 150,
		"HEAD-ELCC", "Embroidered logo Commando caps",
		"Watch cap with logo", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Logo;English Rose@", "pd-1440118355.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/thumb/tn_headgear (20).jpg",
		200, 149,
		"HEAD-THINNY", "Thinsulate bob hat",
		"Extra warm bob hat", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd1703614089.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/tn_minimagass.jpg",
		200, 266,
		"TOR-AAACCS", "Maglite AA Accessory pack",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd327257325.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/tn_magbulbs.jpg",
		200, 126,
		"TOR-AABULB", "Maglite AA bulb",
		"", "",
		"3", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd511987939.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/tn_magwand.jpg",
		200, 322,
		"TOR-FO", "Maglite AA Fibre Optic ",
		"", "",
		"7.95", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd-544969441.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/tn_magbulbs.jpg",
		200, 126,
		"BULB-DCELL-1", "Maglite bulb for D-Cell torches",
		"", "",
		"4", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd695358681.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/tn_magfilters.jpg",
		200, 379,
		"TOR-DCELLCBO-1", "Maglite D-Cell combo pack",
		"", "",
		"10.95", "0.2",
		"1", 1,
		"Pieces", "126",
		"", "pd-1706924993.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/tn_Minimag.jpg",
		200, 378,
		"TOR-AACOM", "Maglite AA Combo pack",
		"", "",
		"19.95", "0.1",
		"1", 1,
		"Pieces", "126",
		"Color;Black@", "pd-904080281.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/tn_maggrip.jpg",
		200, 341,
		"TOR-NEDCGCLAA", "Nite-Eze AA-Cell grip and clip",
		"", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd88329673.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/tn_magcarry.jpg",
		200, 449,
		"TOR-NEDCGCL-1", "Nite-Eze D-Cell grip and clip",
		"", "",
		"11.5", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd-1977745275.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/images/nopicture.gif",
		55, 38,
		"TAC-30MILWEAV", "30mm ring for red dot sights.",
		"30mm mount ring.", "",
		"21.55", "0.2",
		"1", 1,
		"Pieces", "123",
		"Rail;Picatinny@", "pd-1989767966.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/tn_gregsonpack.jpg",
		200, 190,
		"FA-GREGS-1", "Gregson First Aid Pack",
		"First Aid Kit for Advanced Emergency situations", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "47",
		"", "pd-1036811853.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/tn_gregsonpacksmall.jpg",
		187, 200,
		"FA-LSAV-1", "Lifesaver No.2 First Aid Kit",
		"Basic First Aid Pack", "",
		"29.95", "0.8",
		"1", 1,
		"Pieces", "47",
		"", "pd-432035047.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/tn_medpack.jpg",
		200, 173,
		"FA-MFAK-1", "Mountain First Aid Kit",
		"Quality First Aid Kit", "",
		"21.95", "0.7",
		"1", 1,
		"Pieces", "47",
		"", "pd842975983.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/tn_mleaderfaid.jpg",
		200, 150,
		"FA-MLFAK-1", "Mountain Leaders First Aid Kit",
		"Quality First Aid Kit", "",
		"39.95", "1.1",
		"1", 1,
		"Pieces", "47",
		"", "pd1168475829.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/tn_sterileset.jpg",
		200, 150,
		"FA-STER-1", "Sterile Set",
		"First Aid set", "",
		"17.95", "0.7",
		"1", 1,
		"Pieces", "47",
		"", "pd777977835.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/thumb/tn_healheel.jpg",
		200, 150,
		"FA-PHHBK-1", "Pioneer Heel Heal Kit",
		"Blister kit", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "47",
		"", "pd-1004456943.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/tn_medkit2.jpg",
		200, 236,
		"FA-WMFAK-1", "Waterproof Mountain First Aid Kit",
		"Quality First Aid Kit", "",
		"18.95", "0.8",
		"1", 1,
		"Pieces", "47",
		"", "pd425221287.htm",
		"", 1,
		"FAD", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/tn_headgear (22).jpg",
		200, 128,
		"HEAD-LEGI", "Andy Coutanche&rsquo;s Survival Kepi",
		"Camouflaged Legionnaires cap", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"", "pd-459077669.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/tn_headgear.jpg",
		189, 150,
		"HEAD-MFH", "Mountain Fox bob hat",
		"Fleece bob hat", "",
		"8.5", "0.4",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd-227192931.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/tn_headgear (8).jpg",
		197, 150,
		"HEAD-URB", "Urban Camo cap",
		"Baseball style hat in urban camouflage", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"", "pd1544335951.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/tn_headgear (7).jpg",
		200, 75,
		"HEAD-POPO", "U.S Embroidered Security Caps",
		"Various embroidered baseball caps", "",
		"5.5", "0.4",
		"1", 1,
		"Pieces", "81",
		"Logo;Bomb Squad@", "pd1584036969.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/tn_headgear (5).jpg",
		200, 148,
		"HEAD-WBBH", "Wide Brim Bush Hat",
		"Large digger style hat", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "81",
		"Size;L@", "pd-570773829.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/tn_headgear (24).jpg",
		200, 104,
		"HEAD-WRAP", "Headwraps",
		"Bandana style headwrap", "",
		"8.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"Color;Black@", "pd-1025312523.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/tn_headgear (6).jpg",
		192, 150,
		"HEAD-ECON", "Economy Berets",
		"Reproduction military berets", "",
		"4.95", "0.4",
		"1", 1,
		"Pieces", "81",
		"Size;55@Color;Black@", "pd-715441956.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/tn_sets (1).jpg",
		152, 150,
		"CAMOS-FLEK", "German Flecktarn",
		"Flecktarn cap, shirt and trousers", "",
		"29.95", "3",
		"1", 1,
		"Pieces", "40",
		"Size;L@", "pd329026859.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/tn_powerband1.jpg",
		200, 150,
		"CATA-MAG", "Spare Magnum Powerbands",
		"Magnum Powerband for Catapults", "",
		"4.5", "0.1",
		"1", 1,
		"Pieces", "51",
		"", "pd1440810653.htm",
		"", 1,
		"CATAMM", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/tn_slingshotammo.jpg",
		192, 200,
		"CATA-SLIN", "Stainless slingshot ammo",
		"Stainless steel Barnett slingshot ammo", "",
		"4.5", "0.1",
		"1", 1,
		"Pieces", "51",
		"", "pd-1972919068.htm",
		"", 1,
		"CATAMM", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/tn_sets (2).jpg",
		163, 150,
		"CAMOS-SWISSM", "Swiss Camouflage",
		"Modern Swiss woodland camouflage", "",
		"99.95", "2",
		"1", 1,
		"Pieces", "40",
		"Size;L@", "pd1053423779.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/tn_sets (3).jpg",
		158, 150,
		"CAMOS-SWISSA", "Swiss Alpenflage",
		"Swiss &quot;Pizza camo&quot; Alpenflage set", "",
		"39.95", "3",
		"1", 1,
		"Pieces", "40",
		"Size;L@Variant;Jacket & Trousers@", "pd-1942912383.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/tn_sets.jpg",
		144, 150,
		"CAMOS-FRG", "French Goretex",
		"French Central European Goretex set", "",
		"130", "2.5",
		"1", 1,
		"Pieces", "40",
		"Size;L@", "pd-1132978353.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/tn_sets.jpg",
		144, 150,
		"CAMOS-FRG-1", "French Goretex",
		"French Central European Goretex set", "",
		"130", "2.5",
		"1", 1,
		"Pieces", "133",
		"Size;L@", "pd1160016405.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/tn_bduset.jpg",
		199, 150,
		"CAMOS-USBDU", "U.S Battledress Uniform",
		"U.S BDU sets", "",
		"69.95", "1.5",
		"1", 1,
		"Pieces", "40",
		"Size;L@Color;Black@", "pd852273052.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/tn_94set.jpg",
		198, 134,
		"CAMOS-BRIT94", "British 94 pattern DPM",
		"Temperate DPM camouflage", "",
		"60", "2.5",
		"1", 1,
		"Pieces", "40",
		"Size;L@", "pd1671695830.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/tn_95set.jpg",
		199, 157,
		"CAMOS-BRIT95", "British 95 pattern DPM",
		"Soldier 95 DPM sets", "",
		"59.9", "4",
		"1", 1,
		"Pieces", "40",
		"Size;L@Variant;Shirt & Trousers@", "pd2131274265.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/tn_marinet.jpg",
		199, 145,
		"TSH-RM", "Royal Marines T-Shirt",
		"Green T-shirt bearing Marines emblem", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd1284538535.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/tn_parat.jpg",
		199, 158,
		"TSH-PARA", "Parachute Regiment T-Shirt",
		"Maroon T-shirt bearing Para Regt emblem", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd763761453.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/tn_sast.jpg",
		198, 157,
		"TSH-SAS", "SAS T-Shirt",
		"Black T-shirt bearing SAS emblem", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd888200539.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/thumb/tn_blackt.jpg",
		199, 159,
		"TSH-BRB", "British Black T-shirt",
		"British style black t-shirt", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd1680261476.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/tn_whitet.jpg",
		198, 158,
		"TSH-BRW", "British White T-shirt",
		"British style white t-shirt", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd-1923967438.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/thumb/tn_choc_chip_t.jpg",
		183, 150,
		"DES-CHOCYT", "U.S. Desert Choc-Chip T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd216330874.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/thumb/tn_uswoodt.jpg",
		198, 154,
		"TSH-USWO", "U.S Woodland camo T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd921270468.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/images/nopicture.gif",
		55, 38,
		"TSH-USUR", "U.S Urban camo T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd1474712301.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/tn_nighturbant.jpg",
		199, 163,
		"TSH-USMN", "U.S Midnight Urban camo T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd-1622001051.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/tn_tigerstripet.jpg",
		199, 141,
		"TSH-USTS", "U.S Tigerstripe camo T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd-75634467.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/tn_usolivet.jpg",
		198, 154,
		"TSH-USOL", "U.S Olive green T-shirt",
		"", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd-1502265771.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/tn_britolivet.jpg",
		198, 159,
		"TSH-PLG", "Plain Green T-shirt",
		"", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd2055557448.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/images/nopicture.gif",
		55, 38,
		"TSH-PLN", "Plain Navy T-shirt",
		"", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "130",
		"Size;L@", "pd575322294.htm",
		"", 1,
		"TSH", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/images/nopicture.gif",
		55, 38,
		"PON-USA", "U.S Army poncho",
		"Camouflage or Olive green Poncho", "",
		"26.95", "1.5",
		"1", 1,
		"Pieces", "135",
		"Color;Olive Green@", "pd1053511427.htm",
		"", 1,
		"PON", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/images/nopicture.gif",
		55, 38,
		"PON-EMER", "Emergency Poncho",
		"Waterproof, vinyl poncho", "",
		"4.95", "0.4",
		"1", 1,
		"Pieces", "135",
		"", "pd-955682014.htm",
		"", 1,
		"PON", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/tn_poncho.jpg",
		134, 150,
		"PON-BRIT", "British Army Poncho",
		"", "",
		"24.95", "1",
		"1", 1,
		"Pieces", "135",
		"Condition;Brand New@", "pd962799950.htm",
		"", 1,
		"PON", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/images/nopicture.gif",
		55, 38,
		"PON-GER", "German Poncho",
		"Used grade German Army Poncho", "",
		"16.95", "1.5",
		"1", 1,
		"Pieces", "135",
		"", "pd1165600812.htm",
		"", 1,
		"PON", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/tn_snowsuit.jpg",
		198, 168,
		"CAMOS-SNOW", "Snow Suit",
		"Two piece reversible snow camo", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "40",
		"", "pd1065593420.htm",
		"", 1,
		"CAMOS", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/tn_britsuit.jpg",
		199, 344,
		"COV-UKA", "U.K Aircrew suit",
		"British flight suit", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "37",
		"Size;34 inch chest@", "pd-1687868367.htm",
		"", 1,
		"COV", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/tn_uscover.jpg",
		199, 362,
		"COV-USA", "U.S Aircrew suit",
		"American flight suit", "",
		"29.95", "1.5",
		"1", 1,
		"Pieces", "37",
		"Size;34 inch chest@", "pd535995459.htm",
		"", 1,
		"COV", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/thumb/tn_castlecover.jpg",
		199, 347,
		"COV-HW", "Heavyweight Boiler suit",
		"Zip front boiler suit", "",
		"18.95", "1.5",
		"1", 1,
		"Pieces", "37",
		"Size;36 inch chest@Color;Navy Blue@", "pd1356377065.htm",
		"", 1,
		"COV", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/thumb/tn_swatcover.jpg",
		199, 298,
		"COV-SWAT", "SWAT suit",
		"Black SWAT style coveralls", "",
		"49.95", "1.2",
		"1", 1,
		"Pieces", "37",
		"Size;L@", "pd537310341.htm",
		"", 1,
		"COV", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/images/nopicture.gif",
		55, 38,
		"WAT-HIVIS", "Hi-Vis Weatheking",
		"Yellow high-visibility waterproof jacket", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "133",
		"Size;L@", "pd-1873866837.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/images/nopicture.gif",
		55, 38,
		"WAT-HIVISF", "Hi-Vis Freeway",
		"Yellow high-visibility waterproof jacket with reflective strips", "",
		"49.95", "1.4",
		"1", 1,
		"Pieces", "133",
		"Size;L@", "pd680970705.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/images/nopicture.gif",
		55, 38,
		"WET-STORM", "Storm Jacket",
		"PVC waterproof jacket", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "133",
		"Size;L@Color;Green@", "pd1549342588.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/thumb/tn_jacket (9).jpg",
		132, 150,
		"WAT-DPMG", "DPM Goretex smock",
		"British DPM goretex smock", "",
		"135", "1",
		"1", 1,
		"Pieces", "133",
		"Size;L@Condition;Brand New@", "pd-1867268681.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/thumb/tn_jacket (9).jpg",
		132, 150,
		"WAT-95PS", "95 pattern Goretex smock",
		"British DPM current issue Goretex smock", "",
		"85", "1.2",
		"1", 1,
		"Pieces", "133",
		"Size;L@", "pd-1281960807.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/thumb/tn_trousers (7).jpg",
		99, 150,
		"WAT-95PT", "95 Pattern Goretex Trousers",
		"British current issue DPM Goretex trousers", "",
		"35", "0.7",
		"1", 1,
		"Pieces", "133",
		"Size;L@", "pd-875848341.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/images/nopicture.gif",
		55, 38,
		"WAT-HWNJ", "Heavyweight Nylon Jacket",
		"Old issue British DPM waterproof jacket", "",
		"22.5", "1.1",
		"1", 1,
		"Pieces", "133",
		"Size;36 inch chest@", "pd-195646813.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/images/nopicture.gif",
		55, 38,
		"WAT-HWNT", "Heavyweight Nylon Trousers",
		"Old issue British DPM waterproof Trousers", "",
		"12.5", "1.1",
		"1", 1,
		"Pieces", "133",
		"Size;28 inch@", "pd307019145.htm",
		"", 1,
		"WAT", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/thumb/tn_nightowl1.JPG",
		200, 166,
		"NVG-NOL", "Night Owl &rsquo;Light&rsquo;",
		"Night Vision scope", "",
		"229.95", "1",
		"1", 1,
		"Pieces", "110",
		"", "pd-951719235.htm",
		"", 1,
		"NVG", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/thumb/tn_cyclopscompact.jpg",
		200, 150,
		"NVG-NOC", "Night Owl Cyclops Compact",
		"Night Vision scope", "",
		"249.95", "1",
		"1", 1,
		"Pieces", "110",
		"", "pd-844291277.htm",
		"", 1,
		"NVG", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/thumb/tn_bags (2).jpg",
		90, 150,
		"KBAG-DESR", "Desert Rat Kit Bag",
		"Extra Large Kit Bag", "",
		"19.95", "1.3",
		"1", 1,
		"Pieces", "32",
		"", "pd1053685715.htm",
		"", 1,
		"KBAG", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/thumb/tn_bags (11).jpg",
		91, 150,
		"KBAG-CAMSAS", "Camo Sausage Bag",
		"Waterproof nylon kit bag", "",
		"9.95", "0.5",
		"1", 1,
		"Pieces", "32",
		"", "pd739479097.htm",
		"", 1,
		"KBAG", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/thumb/tn_bags (1).jpg",
		109, 150,
		"KBAG-BRITA", "British Army Kit Bag",
		"Current issue kit bag", "",
		"12.95", "1.1",
		"1", 1,
		"Pieces", "32",
		"", "pd-318905585.htm",
		"", 1,
		"KBAG", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/thumb/tn_bags.jpg",
		168, 150,
		"KBAG-USPH", "U.S Pilots Holdall",
		"Flight holdall", "",
		"19.95", "1.1",
		"1", 1,
		"Pieces", "32",
		"", "pd1053690592.htm",
		"", 1,
		"KBAG", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/thumb/tn_arktispatrolpack.jpg",
		184, 200,
		"BAG-ARK", "Arktis Patrol Pack",
		"Long Range Patrol backpack", "",
		"69.5", "1",
		"1", 1,
		"Pieces", "31",
		"Color;DPM Camouflage@", "pd-1484740372.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/thumb/tn_bags (8).jpg",
		200, 127,
		"BAG-CON", "Forces 44 pack",
		"44 Litre back pack", "",
		"31.95", "0.8",
		"1", 1,
		"Pieces", "31",
		"Color;DPM Camouflage@", "pd1748869048.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/thumb/tn_bags (6).jpg",
		144, 150,
		"BAG-MUN", "Berghaus Munro",
		"Patrol pack/Day sack", "",
		"74.95", "1.3",
		"1", 1,
		"Pieces", "31",
		"Color;Black@", "pd-1343004945.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/images/nopicture.gif",
		55, 38,
		"BAG-REPLCE", "Reproduction PLCE Bergen",
		"Copy PLCE rucksack", "",
		"95", "2",
		"1", 1,
		"Pieces", "31",
		"", "pd765354576.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/thumb/tn_marucksack.jpg",
		200, 179,
		"BAG-MA", "&quot;MA&quot; Rucksacks",
		"Large Polyurethane Pack", "",
		"65", "1.5",
		"1", 1,
		"Pieces", "31",
		"Size;100 Litre@Color;DPM Camouflage@", "pd-200302698.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/thumb/tn_xr40pack.jpg",
		184, 200,
		"BAG-RMXR40", "Rangemaster XR40",
		"Patrol Pack", "",
		"65", "1.2",
		"1", 1,
		"Pieces", "31",
		"Color;DPM Camouflage@", "pd2136253698.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/images/nopicture.gif",
		55, 38,
		"BAG-CON", "Conqueror Rucksack MKII",
		"Large durable Bergen", "",
		"69.95", "2",
		"1", 1,
		"Pieces", "31",
		"Size;100 Litre@Color;DPM Camouflage@", "pd-2003518708.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/images/nopicture.gif",
		55, 38,
		"BAG-RANG", "Ranger Pack",
		"Camouflage daysack", "",
		"6.5", "0.6",
		"1", 1,
		"Pieces", "31",
		"", "pd1374341146.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/thumb/tn_usedplcebergen.jpg",
		182, 200,
		"BAG-PLCE", "PLCE Bergen - Grade 1",
		"Genuine issue British Army rucksack", "",
		"135", "1.5",
		"1", 1,
		"Pieces", "31",
		"Variant;DPM with pockets@", "pd-183903229.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/thumb/tn_newplcebergen.jpg",
		179, 200,
		"BAG-PLCEN", "PLCE Bergen - New",
		"Genuine issue British Army rucksack", "",
		"165", "1.5",
		"1", 1,
		"Pieces", "31",
		"Variant;DPM with pockets@", "pd430755305.htm",
		"", 1,
		"BAG", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/thumb/tn_bgtbootcarekit.jpg",
		200, 150,
		"BK-BDG", "Budget Boot care kit",
		"Economy boot care pack", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "73",
		"", "pd1054388139.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/thumb/tn_bootkitjpg.jpg",
		200, 149,
		"BK-BLCKH", "Blackhorse Boot Care kit",
		"Quality boot care kit", "",
		"12.95", "0.4",
		"1", 1,
		"Pieces", "73",
		"", "pd-1934005807.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/thumb/tn_selvytcloth.jpg",
		200, 150,
		"BK-SELV", "Selvyt Boot polishing cloth",
		"For polishing boots to a fine shine!", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "73",
		"", "pd1049266279.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/thumb/tn_waterproof.jpg",
		200, 479,
		"BK-WAT", "G-Sport Spray",
		"Waterproofing spray", "",
		"4.95", "0.4",
		"1", 1,
		"Pieces", "73",
		"", "pd-503947027.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/thumb/tn_dubbin.jpg",
		200, 193,
		"BK-DUBBIN", "Dubbin",
		"Leather Wax", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "73",
		"", "pd-1361754909.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/thumb/tn_bootlace.jpg",
		200, 118,
		"BK-LACE", "Boot Laces",
		"", "",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "73",
		"", "pd-1219632695.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/thumb/tn_lasyboots.jpg",
		200, 199,
		"BK-PVC", "Boot Zippers",
		"PVC zippers", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "73",
		"", "pd-361979617.htm",
		"", 1,
		"CARMA", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/thumb/tn_jimsthermalundies.jpg",
		148, 200,
		"JIMSPANTS", "Jim Hopkins Thermal Underwear",
		"Stylish under garments endorsed by Jim!", "",
		"7.5", "0.8",
		"1", 1,
		"Pieces", "52",
		"Size;L@Variant;Jims Long sleeve vest@", "pd-600857052.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/thumb/tn_belt2.jpg",
		200, 150,
		"BELT-QR", "Quick Release Belt",
		"Heavy duty pistol belt", "",
		"6.5", "0.2",
		"1", 1,
		"Pieces", "30",
		"", "pd-1071760354.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/thumb/tn_nylonbelt.jpg",
		197, 90,
		"BELT-NY", "Tough Nylon Belt",
		"", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "30",
		"", "pd-1112787076.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/thumb/tn_pisbelt.jpg",
		199, 150,
		"BELT-USP", "U.S Pistol Belt",
		"Repro Pistol Belt", "",
		"3.5", "0.2",
		"1", 1,
		"Pieces", "30",
		"Color;Black@", "pd501401122.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/images/nopicture.gif",
		55, 38,
		"BELT-60", "60mm Stiff Belt",
		"DPM duty belt", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "30",
		"", "pd1908367648.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/thumb/tn_policebelt.jpg",
		199, 61,
		"BELT-POL", "Police Belt",
		"Q.R Police belt", "",
		"8.95", "0.1",
		"1", 1,
		"Pieces", "30",
		"", "pd1477422158.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/thumb/tn_milbelt.jpg",
		199, 110,
		"BELT-MIL", "Military Pattern Belt",
		"BDU style belt", "",
		"3.5", "0.1",
		"1", 1,
		"Pieces", "30",
		"Color;Black@", "pd780593205.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/thumb/tn_parastab.jpg",
		198, 79,
		"BELT-STAB", "Stable Belt",
		"Regimental Stable belts", "",
		"19.95", "0.3",
		"1", 1,
		"Pieces", "30",
		"Size;L@Regiment;Parachute Regiment@", "pd107897005.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/thumb/tn_plcebelt.jpg",
		197, 59,
		"BELT-PLCE", "PLCE Belt - New",
		"Current Issue British webbing belt", "",
		"16.95", "0.3",
		"1", 1,
		"Pieces", "30",
		"", "pd1792297635.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/thumb/tn_padbelt.jpg",
		198, 50,
		"BELT-WYV", "Wyvern Padded belt",
		"Padded PLCE compatible belt", "",
		"18.5", "0.3",
		"1", 1,
		"Pieces", "30",
		"", "pd-813474423.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/thumb/tn_beltliner.jpg",
		198, 73,
		"BELT-WYV", "Wyvern Belt Liner Pad",
		"Padded belt liner", "",
		"16.5", "0.3",
		"1", 1,
		"Pieces", "30",
		"Color;DPM Camouflage@", "pd481083429.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/thumb/tn_web (1).jpg",
		177, 150,
		"TAC-ARKALL-1", "Arktis Allen Belt kit",
		"", "",
		"36.95", "0.7",
		"1", 1,
		"Pieces", "30",
		"", "pd-1566533925.htm",
		"", 1,
		"BELT", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/thumb/tn_jacket (16).jpg",
		144, 150,
		"THERM-SNUG", "Snugpak Sleeka Jacket",
		"Lightweight compact jacket", "",
		"69", "0.6",
		"1", 1,
		"Pieces", "52",
		"Size;L@Color;Black@", "pd-2023054727.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/thumb/tn_jacket (11).jpg",
		148, 150,
		"THERM-BUFF", "Buffalo Special 6",
		"Mountain shirt", "",
		"89", "0.9",
		"1", 1,
		"Pieces", "52",
		"Size;36 inch chest@Color;Black@", "pd1643791209.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/thumb/tn_litelok.jpg",
		200, 324,
		"TOR-LITELOK-1", "Safariland D-Cell Litelok",
		"", "",
		"23.95", "0.1",
		"1", 1,
		"Pieces", "126",
		"", "pd1789887859.htm",
		"", 1,
		"MAGACC", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/thumb/tn_niglove.jpg",
		199, 162,
		"GLO-NI", "Northern Ireland Gloves",
		"Issued leather gloves with knuckle bar", "",
		"16.95", "0.6",
		"1", 1,
		"Pieces", "77",
		"Size;L@", "pd-1655292840.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/thumb/tn_suedemitt.jpg",
		198, 114,
		"GLO-SPSM", "Suede Palm Shooters Mitts",
		"Mitts with flap", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "77",
		"", "pd-970991034.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/thumb/tn_shootglo.jpg",
		199, 119,
		"GLO-LSM", "Long Shooters Mitts",
		"Mitts with flap", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "77",
		"Color;Black@", "pd1710599499.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/thumb/tn_flglo.jpg",
		199, 123,
		"GLO-FLG", "Fingerless Gloves",
		"Thermal gloves", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "77",
		"Color;Black@", "pd1530227516.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/thumb/tn_ffglo.jpg",
		199, 131,
		"GLO-FFG", "Full-fingered Gloves",
		"Thermal gloves", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "77",
		"Color;Black@", "pd-400182326.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/thumb/tn_rambomitt.jpg",
		199, 138,
		"GLO-RAM", "Rambo Mitts",
		"Leather fingerless mitts", "",
		"6.5", "0.3",
		"1", 1,
		"Pieces", "77",
		"", "pd2138151438.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/thumb/tn_grippaglo.jpg",
		199, 137,
		"GLO-GRIP", "Grippa Gloves",
		"Specialist gripping gloves", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "77",
		"", "pd764970732.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/thumb/tn_s95glo.jpg",
		199, 142,
		"GLO-SOL95", "Soldier 95 gloves",
		"Olive Green leather gloves", "",
		"14.95", "0.3",
		"1", 1,
		"Pieces", "77",
		"Size;L@", "pd-1701394087.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/thumb/tn_s2000glo.jpg",
		199, 140,
		"GLO-SOL20", "Soldier 2000 gloves",
		"Black leather gloves", "",
		"34.95", "0.3",
		"1", 1,
		"Pieces", "77",
		"", "pd-693718766.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/thumb/tn_DSCF0046.jpg",
		145, 150,
		"NBC-BGL", "British NBC Gloves and Cotton Liners",
		"", "",
		"6.5", "0.3",
		"1", 1,
		"Pieces", "77",
		"Size;L@", "pd-1708980848.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/thumb/tn_boots.jpg",
		200, 100,
		"TRAI-BRIT", "British Genuine Army Trainers",
		"Current Issue Army trainer", "",
		"16.95", "1",
		"1", 1,
		"Pieces", "74",
		"Size;10@", "pd-746572222.htm",
		"", 1,
		"SHOTR", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/thumb/tn_arcglo.jpg",
		199, 161,
		"GLO-ARC", "Arctic Mitts",
		"British Army 95 mitts", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "77",
		"", "pd-2030645696.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/thumb/tn_arcglo.jpg",
		199, 161,
		"GLO-ARC-1", "Arctic Mitts",
		"British Army 95 mitts", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "53",
		"", "pd1577610583.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/thumb/tn_thinffglo.jpg",
		199, 147,
		"GLO-THINFF", "Thinsulate Full fingered gloves",
		"Thinsulate lined gloves", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "77",
		"Color;Black@", "pd1530058963.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/thumb/tn_thinflglo.jpg",
		199, 134,
		"GLO-THINFL", "Thinsulate fingerless gloves",
		"Thinsulate lined gloves", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "77",
		"Color;Black@", "pd1801934649.htm",
		"", 1,
		"GLO", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/thumb/tn_headgear (17).jpg",
		148, 150,
		"HEAD-COM", "Commando caps",
		"British watch cap", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd546757387.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/thumb/tn_headgear (1).jpg",
		155, 150,
		"HEAD-ELCC", "Embroidered logo Commando caps",
		"Watch cap with logo", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "53",
		"Logo;English Rose@", "pd-1266865721.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/thumb/tn_headgear.jpg",
		189, 150,
		"HEAD-MFH", "Mountain Fox bob hat",
		"Fleece bob hat", "",
		"8.5", "0.4",
		"1", 1,
		"Pieces", "53",
		"Size;L@", "pd-1237825080.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/thumb/tn_headgear (21).jpg",
		68, 150,
		"HEAD-OBALA", "Open-faced Balaclava",
		"Single hole balaclava", "",
		"3.5", "0.3",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd-1552808798.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/thumb/tn_headgear (19).jpg",
		100, 150,
		"HEAD-PBALA-1", "Peaked Balaclava",
		"Single hole Balaclava with peak", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "53",
		"", "pd2021905102.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[806] = new Element(
		806, "assets/thumb/tn_headgear (20).jpg",
		200, 149,
		"HEAD-THINNY", "Thinsulate bob hat",
		"Extra warm bob hat", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd-25137748.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/thumb/tn_headgear (4).jpg",
		96, 150,
		"HEAD-THBALA-1", "Thinsulate Balaclava",
		"Three hole Balaclava with extra warm lining", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "53",
		"", "pd-1272369032.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/thumb/tn_headgear (16).jpg",
		74, 150,
		"HEAD-TBALA", "T-Hunter Balaclava",
		"Three hole balaclava", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd-1726452890.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/thumb/tn_combatsock.jpg",
		200, 150,
		"SOCK-COM", "Commando Socks",
		"Issued sock to the Forces", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "75",
		"Color;Black@", "pd1431445009.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/thumb/tn_patrolsocks.jpg",
		200, 150,
		"SOCK-PATR", "Patrol sock",
		"Combat sock", "",
		"4.5", "0.2",
		"1", 1,
		"Pieces", "75",
		"", "pd-1159407315.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/thumb/tn_gaiters.jpg",
		200, 150,
		"SOCK-NYLG", "Nylon Gaiters",
		"Waterproof gaiters", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "75",
		"", "pd2073452041.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/thumb/tn_berghausdrysock.jpg",
		129, 200,
		"SOCK-BERG", "Berghaus Dry sock",
		"Goretex sock", "",
		"39.95", "0.2",
		"1", 1,
		"Pieces", "75",
		"Size;10@", "pd213042967.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/thumb/tn_95gaiters.jpg",
		200, 158,
		"SOCK-95", "95 Pattern Gaiters",
		"Snow MKII goretex gaiters", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "75",
		"", "pd-1892456934.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/thumb/tn_95gaiters.jpg",
		200, 158,
		"SOCK-95-1", "95 Pattern Gaiters",
		"Snow MKII goretex gaiters", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "134",
		"", "pd1985602008.htm",
		"", 1,
		"WOTHER", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/images/nopicture.gif",
		55, 38,
		"SOCK-NYLG-1", "Nylon Gaiters",
		"Waterproof gaiters", "",
		"10.95", "0.4",
		"1", 1,
		"Pieces", "134",
		"", "pd70384582.htm",
		"", 1,
		"WOTHER", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/thumb/tn_goretexsocks.jpg",
		200, 144,
		"SOCK-MILG", "Military Goretex sock",
		"Old issue Goretex sock", "",
		"14.95", "0.3",
		"1", 1,
		"Pieces", "75",
		"Size;10@", "pd1119197372.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/thumb/tn_goretexsocks.jpg",
		200, 144,
		"SOCK-MIL95", "95 pattern Goretex Sock",
		"Current issue Goretex sock", "",
		"19.95", "0.3",
		"1", 1,
		"Pieces", "75",
		"Size;10@", "pd1646763338.htm",
		"", 1,
		"SOCK", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/images/nopicture.gif",
		55, 38,
		"SOCK-MIL95", "95 pattern Goretex Sock",
		"Current issue Goretex sock", "",
		"19.95", "0.3",
		"1", 1,
		"Pieces", "134",
		"Size;10@", "pd501728056.htm",
		"", 1,
		"WOTHER", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/images/nopicture.gif",
		55, 38,
		"SOCK-MILG", "Military Goretex sock",
		"Old issue Goretex sock", "",
		"14.95", "0.3",
		"1", 1,
		"Pieces", "134",
		"Size;10@", "pd810563518.htm",
		"", 1,
		"WOTHER", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/thumb/tn_thinffglo.jpg",
		199, 147,
		"GLO-THINFF", "Thinsulate Full fingered gloves",
		"Thinsulate lined gloves", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd159892596.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/thumb/tn_thinflglo.jpg",
		199, 134,
		"GLO-THINFL", "Thinsulate fingerless gloves",
		"Thinsulate lined gloves", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "53",
		"Color;Black@", "pd784450496.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/thumb/tn_scrim (3).jpg",
		200, 134,
		"DES-SHE", "Shemagh",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "53",
		"Color;Blue & White@", "pd1896394700.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/thumb/tn_hellyhanjacket.jpg",
		199, 197,
		"COL-HHFJ", "Helly Hansen Field Jacket",
		"Thermal Polyamid/Nylon fleece", "",
		"75", "1.6",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd1485450681.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/thumb/tn_olivefleece.jpg",
		200, 159,
		"COL-OGFL", "Olive Green Fleece jacket",
		"Latest issue Army fleece", "",
		"59.95", "1.5",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd-1664320900.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/thumb/tn_s95fleece.jpg",
		198, 190,
		"COL-OGFL-1", "Soldier 95  Fleece jacket",
		"DPM camo fleece", "",
		"49.95", "1.5",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd908612874.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/thumb/tn_buffalohood.jpg",
		200, 150,
		"COL-BUFHO", "Buffalo Hood",
		"Hood for Special 6 shirt", "",
		"15.5", "0.6",
		"1", 1,
		"Pieces", "53",
		"Size;34 inch chest@Color;Black@", "pd1874796834.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/thumb/tn_norgy.jpg",
		199, 178,
		"COL-NOR", "Norwegian shirt",
		"Cold weather field shirt", "",
		"19.95", "0.9",
		"1", 1,
		"Pieces", "52",
		"Size;L@Color;Black@", "pd305174912.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/thumb/tn_jacket (11).jpg",
		148, 150,
		"THERM-BUFF", "Buffalo Special 6",
		"Mountain shirt", "",
		"89", "0.9",
		"1", 1,
		"Pieces", "85",
		"Size;36 inch chest@Color;Black@", "pd843592087.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/thumb/tn_hellyhanjacket.jpg",
		199, 197,
		"COL-HHFJ", "Helly Hansen Field Jacket",
		"Thermal Polyamid/Nylon fleece", "",
		"75", "1.6",
		"1", 1,
		"Pieces", "85",
		"Size;L@", "pd639729159.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/thumb/tn_olivefleece.jpg",
		200, 159,
		"COL-OGFL", "Olive Green Fleece jacket",
		"Latest issue Army fleece", "",
		"59.95", "1.5",
		"1", 1,
		"Pieces", "85",
		"Size;L@", "pd1543027899.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/thumb/tn_jacket (16).jpg",
		144, 150,
		"THERM-SNUG", "Snugpak Sleeka Jacket",
		"Lightweight compact jacket", "",
		"69", "0.6",
		"1", 1,
		"Pieces", "85",
		"Size;L@Color;Black@", "pd332795116.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/thumb/tn_s95fleece.jpg",
		198, 190,
		"COL-OGFL-1", "Soldier 95  Fleece jacket",
		"DPM camo fleece", "",
		"49.95", "1.5",
		"1", 1,
		"Pieces", "85",
		"Size;L@", "pd-1471912174.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/thumb/tn_jacket (9).jpg",
		132, 150,
		"WAT-DPMG", "DPM Goretex smock",
		"British DPM goretex smock", "",
		"135", "1",
		"1", 1,
		"Pieces", "86",
		"Size;L@Condition;Brand New@", "pd-1703725924.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/thumb/tn_jacket (9).jpg",
		132, 150,
		"WAT-95PS", "95 pattern Goretex smock",
		"British DPM current issue Goretex smock", "",
		"85", "1.2",
		"1", 1,
		"Pieces", "86",
		"Size;L@", "pd-1692963596.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/thumb/tn_nylonjkt.jpg",
		189, 200,
		"WAT-HWNJ", "Heavyweight Nylon Jacket",
		"Old issue British DPM waterproof jacket", "",
		"22.5", "1.1",
		"1", 1,
		"Pieces", "86",
		"Size;36 inch chest@", "pd-703335314.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/thumb/tn_hiviswaistcoat.jpg",
		200, 150,
		"WAT-HIVIS", "Hi-Vis Weatheking",
		"Yellow high-visibility waterproof jacket", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "86",
		"Size;L@", "pd1152835846.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/thumb/tn_hivisjkt.jpg",
		200, 187,
		"WAT-HIVISF", "Hi-Vis Freeway",
		"Yellow high-visibility waterproof jacket with reflective strips", "",
		"49.95", "1.4",
		"1", 1,
		"Pieces", "86",
		"Size;L@", "pd-1621620496.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/thumb/tn_stormjkt.jpg",
		171, 200,
		"WET-STORM", "Storm Jacket",
		"PVC waterproof jacket", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "86",
		"Size;L@Color;Green@", "pd868538803.htm",
		"", 1,
		"WJAC", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/thumb/tn_sassmock.jpg",
		199, 228,
		"JAC-SAS", "SAS Smock",
		"Windproof DPM jacket", "",
		"99.95", "1.4",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;Black@", "pd-1511976726.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/thumb/tn_arcticsmock.jpg",
		199, 212,
		"JAC-ARC", "Arctic Smock",
		"Windproof DPM jacket", "",
		"99.95", "1.4",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd-283064024.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/thumb/tn_usedsassmock.jpg",
		182, 200,
		"JAC-SASUG", "SAS Smock Grade 1",
		"Used grade Windproof Jacket", "",
		"49.95", "1.3",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd-504492288.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[842] = new Element(
		842, "assets/thumb/tn_arkwat.jpg",
		199, 225,
		"JAC-ARKWAT", "Arktis Waterproof SAS smock",
		"100% waterproof smock", "",
		"169.95", "2",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;AUSCAM@", "pd950576757.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[843] = new Element(
		843, "assets/thumb/tn_arkwind.jpg",
		199, 204,
		"JAC-ARKWIN", "Arktis Windproof SAS smock",
		"Breathable smock", "",
		"109.95", "2",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;AUSCAM@", "pd-1000462933.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[844] = new Element(
		844, "assets/thumb/tn_jacket (1).jpg",
		178, 150,
		"JAC-S95", "Soldier 95 jacket",
		"Current issue smock", "",
		"59.95", "1.5",
		"1", 1,
		"Pieces", "84",
		"Size;L@Condition;Brand New@", "pd-1440731137.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[845] = new Element(
		845, "assets/thumb/tn_94smok.jpg",
		199, 190,
		"JAC-94SM", "94 Pattern smock",
		"Previous issue Army jacket", "",
		"35", "1.6",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd1533655201.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[846] = new Element(
		846, "assets/thumb/tn_kidsjkt.jpg",
		200, 164,
		"KID-JACK", "Kids Camo Jacket",
		"Camouflaged combat jacket", "",
		"16.5", "0.8",
		"1", 1,
		"Pieces", "87",
		"Size;Age 11-12@", "pd-1744863918.htm",
		"", 1,
		"KIDS", "0",
		 0)
	
		Entry[847] = new Element(
		847, "assets/thumb/tn_kidstrs.jpg",
		139, 200,
		"KID-TRO", "Kids Camo Trousers",
		"Combat trousers", "",
		"12.5", "0.5",
		"1", 1,
		"Pieces", "87",
		"Size;Age 11-12@", "pd1400972973.htm",
		"", 1,
		"KIDS", "0",
		 0)
	
		Entry[848] = new Element(
		848, "assets/thumb/tn_kidsbodywmr.jpg",
		200, 197,
		"KID-BOD", "Kids Camo Bodywarmer",
		"Camouflage Combat Bodywarmer", "",
		"16.5", "1.2",
		"1", 1,
		"Pieces", "87",
		"Size;Age 11-12@", "pd792049972.htm",
		"", 1,
		"KIDS", "0",
		 0)
	
		Entry[849] = new Element(
		849, "assets/thumb/tn_origsmock.jpg",
		199, 160,
		"JAC-ORIGCOM", "Original Issue Smock",
		"DPM Combat smock", "",
		"35", "2",
		"1", 1,
		"Pieces", "84",
		"Size;34 inch chest@Condition;Brand New@", "pd-477568284.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[850] = new Element(
		850, "assets/thumb/tn_jacket.jpg",
		158, 150,
		"JAC-VENT", "Ventile smock",
		"Original ventile smock!!!", "",
		"119.95", "1.9",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd-2059838095.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[851] = new Element(
		851, "assets/thumb/tn_ma1jkt.jpg",
		199, 139,
		"JAC-MA1", "USAF MA1 Bomber jacket",
		"Flight Jacket", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;Black@", "pd608019746.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[852] = new Element(
		852, "assets/thumb/tn_parasmock.jpg",
		199, 197,
		"JAC-PARA", "Para Smock",
		"Genuine issue para smock", "",
		"69.95", "1.6",
		"1", 1,
		"Pieces", "84",
		"Size;L@Condition;Brand New@", "pd1161786223.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/thumb/tn_paratypejkt.jpg",
		200, 200,
		"JAC-PARAT", "Para-type jacket",
		"Copy Para smock", "",
		"39.5", "1.5",
		"1", 1,
		"Pieces", "84",
		"Size;36 inch chest@", "pd1564164572.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[854] = new Element(
		854, "assets/thumb/tn_m65gen.jpg",
		199, 204,
		"JAC-M65G", "U.S M65 Combat Jacket",
		"Genuine U.S issue smock", "",
		"85", "2",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;Black@", "pd-969584959.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[855] = new Element(
		855, "assets/thumb/tn_m65.jpg",
		198, 184,
		"JAC-M65R", "U.S M65 Combat Jacket",
		"Reproduction U.S issue smock", "",
		"45", "2",
		"1", 1,
		"Pieces", "84",
		"Size;L@Color;Black@", "pd-116476201.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[856] = new Element(
		856, "assets/thumb/tn_dubonpka.jpg",
		200, 194,
		"JAC-DUB", "U.S Dubon Parka",
		"U.S Army thick quilted parka", "",
		"34.95", "2.5",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd-2073331549.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[857] = new Element(
		857, "assets/thumb/tn_fishtailpka.jpg",
		199, 273,
		"JAC-DUBF", "U.S Fishtail Parka",
		"U.S Army cold-weather parka", "",
		"39.95", "3",
		"1", 1,
		"Pieces", "52",
		"Size;M@", "pd1120058778.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[858] = new Element(
		858, "assets/thumb/tn_fishtailpka.jpg",
		199, 273,
		"JAC-DUBF", "U.S Fishtail Parka",
		"U.S Army cold-weather parka", "",
		"59.95", "3",
		"1", 1,
		"Pieces", "85",
		"Size;L@", "pd837385765.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[859] = new Element(
		859, "assets/thumb/tn_dubonpka.jpg",
		200, 194,
		"JAC-DUB", "U.S Dubon Parka",
		"U.S Army thick quilted parka", "",
		"34.95", "2.5",
		"1", 1,
		"Pieces", "85",
		"Size;L@", "pd-1904910675.htm",
		"", 1,
		"JCOL", "0",
		 0)
	
		Entry[860] = new Element(
		860, "assets/thumb/tn_natopka.jpg",
		200, 183,
		"JAC-NATO", "NATO Parka",
		"Cold weather jacket", "",
		"15", "1.5",
		"1", 1,
		"Pieces", "84",
		"Size;M@", "pd2022162736.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[861] = new Element(
		861, "assets/thumb/tn_blackstab.jpg",
		199, 190,
		"BOD-SPV", "U.S Stab Proof Vest",
		"U.S Government Spec stab vest", "",
		"275", "2",
		"1", 1,
		"Pieces", "120",
		"Size;L@", "pd-519436659.htm",
		"", 1,
		"BOD", "0",
		 0)
	
		Entry[862] = new Element(
		862, "assets/thumb/tn_whitebodyarmour.jpg",
		200, 180,
		"BOD-WSV", "Stabproof Vest",
		"Knife resistant body armour", "",
		"115", "2.5",
		"1", 1,
		"Pieces", "120",
		"Size;L@", "pd-1750190730.htm",
		"", 1,
		"BOD", "0",
		 0)
	
		Entry[863] = new Element(
		863, "assets/thumb/tn_lev2.jpg",
		199, 161,
		"BOD-BBBA", "Ballistic Body Armour",
		"HP12 waistcoat style body armour", "",
		"429", "3",
		"1", 1,
		"Pieces", "120",
		"", "pd-1649463148.htm",
		"", 1,
		"BOD", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/thumb/tn_lev3.jpg",
		199, 149,
		"BOD-LV3", "Level 3 Ballistic Body Armour",
		"NIJ Level III Tetranike armour", "",
		"350", "5",
		"1", 1,
		"Pieces", "120",
		"Size;M@", "pd-786627487.htm",
		"", 1,
		"BOD", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/thumb/tn_exbaton1.jpg",
		200, 150,
		"BAT-EX", "Standard Extendable Baton",
		"Gravity Sprung baton", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd-1071210919.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/thumb/tn_rubbaton.jpg",
		200, 150,
		"BAT-RGEB", "Rubber grip Extendable baton",
		"Gravity sprung steel baton", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"Color;Black@", "pd71052789.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/thumb/tn_rubberdildo.jpg",
		200, 150,
		"BAT-RC", "Rubber Cosh",
		"U.S Police style cosh", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "29",
		"", "pd-993330901.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/thumb/tn_extendablepolicebaton.jpg",
		200, 150,
		"BAT-PT", "Extendable Police Baton",
		"Steel gravity sprung baton", "",
		"39.95", "0.7",
		"1", 1,
		"Pieces", "29",
		"", "pd459984721.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/thumb/tn_policebaton.jpg",
		200, 150,
		"BAT-WO", "Wood Cosh",
		"12&quot; cosh", "",
		"9.95", "0.3",
		"1", 1,
		"Pieces", "29",
		"", "pd-385848857.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[870] = new Element(
		870, "assets/thumb/tn_tonfa.jpg",
		200, 150,
		"BAT-TONF", "Chinese Tonfa",
		"Tonfa Baton", "",
		"14.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd1010114157.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[871] = new Element(
		871, "assets/thumb/tn_plceammo.jpg",
		199, 155,
		"PLCE-AMMO", "PLCE Ammo pouches",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@Condition;Brand New@Variant;Left Hand@", "pd-1457053104.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/thumb/tn_plceressie.jpg",
		199, 175,
		"PLCE-RESSIE", "PLCE Respirator Pouch",
		"Large haversack for carrying S10/S6 gas mask", "",
		"22.95", "1.2",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-899784810.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[873] = new Element(
		873, "assets/thumb/tn_plceutil.jpg",
		199, 182,
		"PLCE-UTIL", "PLCE Utility Pouch",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@Condition;Brand New@", "pd951884544.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/images/nopicture.gif",
		55, 38,
		"PLCE-WAT", "PLCE Waterbottle pouch",
		"Current Army issue waterbottle webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-105019366.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[875] = new Element(
		875, "assets/thumb/tn_wyvammo.jpg",
		198, 176,
		"WYV-DAP", "Wyvern Double Ammo Pouch",
		"Double ammo pouch holding 6 SA80 mags", "",
		"27.5", "1",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@Variant;Left Hand@", "pd-2080788124.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/thumb/tn_wyvdblutil.jpg",
		199, 157,
		"WYV-DUP", "Wyvern Double Utility Pouch",
		"Two conjoined utility pouches", "",
		"24", "1",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd2021690718.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/thumb/tn_wyvffd.jpg",
		198, 161,
		"WYV-FFD", "Wyvern FFD pouch",
		"Field Dressing Pouch", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd47595338.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/images/nopicture.gif",
		55, 38,
		"WYV-KFS-1-1", "Wyvern KFS slip",
		"Slip for cutlery", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "102",
		"", "pd139347958.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/images/nopicture.gif",
		55, 38,
		"WYV-CO", "Wyvern Knife/Compass Pouch",
		"Suitable for holding knife or compass", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd-238581996.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/thumb/tn_wyvradio.jpg",
		199, 172,
		"WYV-RAD", "Wyvern Radio Pouch",
		"Holds PRC349 radio", "",
		"18", "0.6",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd-528288.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/thumb/tn_wyvressie.jpg",
		198, 185,
		"WYV-RESSIE", "Wyvern Respirator Haversack",
		"Haversack for S10/S6 respirators", "",
		"24", "1.2",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd-1866471828.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[882] = new Element(
		882, "assets/thumb/tn_wyvpismag.jpg",
		199, 184,
		"WYV-SMP", "Wyvern Single Mag Pouch",
		"Holds one mag for most pistols", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd-128469704.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[883] = new Element(
		883, "assets/thumb/tn_wyvutil.jpg",
		198, 193,
		"WYV-SUP", "Wyvern Single Utility Pouch",
		"For mess tins, water bottles, rations etc.", "",
		"15.5", "0.5",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd1970563268.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[884] = new Element(
		884, "assets/thumb/tn_wyvtripouch.jpg",
		199, 116,
		"WYV-TUP", "Wyvern Triple Utility Pouch",
		"Three utility pouches on a base", "",
		"34.5", "1",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd-124531440.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[885] = new Element(
		885, "assets/images/nopicture.gif",
		55, 38,
		"BAT-QPB", "Quality Police Baton",
		"Side handle tonfa", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd-772260253.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[886] = new Element(
		886, "assets/thumb/tn_batonnunchukas.jpg",
		200, 150,
		"BAT-BN", "Baton Nunchaku",
		"Lightweight nunchuks", "",
		"21.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd1130329929.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[887] = new Element(
		887, "assets/thumb/tn_bruceleenunchukas.jpg",
		200, 150,
		"BAT-BLN", "Bruce Lee Nunchaku",
		"Hardwood nunchuks", "",
		"9.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd1006514847.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[888] = new Element(
		888, "assets/thumb/tn_dragonunchuks.jpg",
		200, 150,
		"BAT-DRA", "Dragon Nunchaku",
		"Wood flails", "",
		"11.95", "0.5",
		"1", 1,
		"Pieces", "29",
		"", "pd-376703515.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[889] = new Element(
		889, "assets/thumb/tn_monadnockpr24.jpg",
		200, 150,
		"BAT-PR24", "Monadnock PR24 baton",
		"American Police baton", "",
		"39.95", "0.6",
		"1", 1,
		"Pieces", "29",
		"", "pd-1586380133.htm",
		"", 1,
		"BAT", "0",
		 0)
	
		Entry[890] = new Element(
		890, "assets/thumb/tn_windbreaker.jpg",
		198, 166,
		"JAC-POL", "U.S Police Windbreakers jacket",
		"Nylon windcheater", "",
		"24.5", "1",
		"1", 1,
		"Pieces", "84",
		"Size;L@Variant;CIA@", "pd1517200973.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[891] = new Element(
		891, "assets/thumb/tn_castlecover.jpg",
		199, 347,
		"COV-HW", "Heavyweight Boiler suit",
		"Zip front boiler suit", "",
		"18.95", "1.5",
		"1", 1,
		"Pieces", "137",
		"Size;36 inch chest@Color;Navy Blue@", "pd-1069919544.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[892] = new Element(
		892, "assets/thumb/tn_hivisjkt.jpg",
		200, 187,
		"WAT-HIVISF", "Hi-Vis Freeway",
		"Yellow high-visibility waterproof jacket with reflective strips", "",
		"49.95", "1.4",
		"1", 1,
		"Pieces", "137",
		"Size;L@", "pd-1690351846.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/thumb/tn_hiviswaistcoat.jpg",
		200, 150,
		"WAT-HIVIS", "Hi-Vis Weatheking",
		"Yellow high-visibility waterproof jacket", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "137",
		"Size;L@", "pd-1307510684.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/thumb/tn_safegl.jpg",
		140, 150,
		"AS-ACC-GOG", "Safety Glasses",
		"Safety Glasses", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "137",
		"Color;Amber@", "pd757406814.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/thumb/tn_bags.jpg",
		168, 150,
		"KBAG-USPH-1", "U.S Pilots Holdall",
		"Flight holdall", "",
		"19.95", "1.1",
		"1", 1,
		"Pieces", "137",
		"", "pd-799424950.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[896] = new Element(
		896, "assets/thumb/tn_stormjkt.jpg",
		171, 200,
		"WET-STORM", "Storm Jacket",
		"PVC waterproof jacket", "",
		"16.95", "0.5",
		"1", 1,
		"Pieces", "137",
		"Size;L@Color;Green@", "pd1211282824.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/images/nopicture.gif",
		55, 38,
		"TAC-APM2", "Aimpoint Comp  M2",
		"High quality red-dot sight w/ NVG compatability", "",
		"329", "0.6",
		"1", 1,
		"Pieces", "123",
		"", "pd1055326471.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/images/nopicture.gif",
		55, 38,
		"TAC-APML2", "Aimpoint Comp  ML2",
		"High quality red-dot sight", "",
		"296", "0.6",
		"1", 1,
		"Pieces", "123",
		"", "pd-1114240371.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/thumb/tn_mask111.jpg",
		200, 221,
		"AS-ACC-WINMSK-1", "Winchester paintball/airsoft mask",
		"Protective full-face mask made by Winchester", "",
		"35", "1",
		"1", 1,
		"Pieces", "67",
		"", "pd-485521533.htm",
		"", 1,
		"FUF", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/images/nopicture.gif",
		55, 38,
		"TAC-STRM3", "Streamlight M3 UTL",
		"Universal Tactical Light for pistols", "",
		"272.39", "0.4",
		"1", 1,
		"Pieces", "123",
		"", "pd1961592288.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/images/nopicture.gif",
		55, 38,
		"TAC-STRM6", "Streamlight M6 UTL &amp; laser",
		"Universal Tactical Light and Laser for pistols", "",
		"578.09", "0.5",
		"1", 1,
		"Pieces", "123",
		"", "pd1188257550.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/images/nopicture.gif",
		55, 38,
		"TAC-870AD", "Streamlight Remington M870 adaptor",
		"Adaptor to fit M3/M6 to M870 shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "123",
		"", "pd-1690053652.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/images/nopicture.gif",
		55, 38,
		"TAC-500AD", "Streamlight Mossberg M500 adaptor",
		"Adaptor to fit M3/M6 to M500 shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "123",
		"", "pd2077690874.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/images/nopicture.gif",
		55, 38,
		"TAC-EXTAD", "Streamlight Extended mag shotgun adaptor",
		"Adaptor to fit M3/M6 to shell tube on shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "123",
		"", "pd-1126073672.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[905] = new Element(
		905, "assets/images/nopicture.gif",
		55, 38,
		"TAC-M16AD", "Streamlight M16/AR15 adaptor",
		"Adaptor to fit M3/M6 to M16/AR15s rifles or carbines", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "123",
		"", "pd1470807974.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/images/nopicture.gif",
		55, 38,
		"TAC-MP5AD", "Streamlight MP5 adaptor",
		"Adaptor to fit M3/M6 to MP5 sub-machine guns", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "123",
		"", "pd1993442884.htm",
		"", 1,
		"WEAPONACC", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/images/nopicture.gif",
		55, 38,
		"TAC-APM2-1", "Aimpoint Comp  M2",
		"High quality red-dot sight w/ NVG compatability", "",
		"329", "0.6",
		"1", 1,
		"Pieces", "111",
		"", "pd-858626542.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/images/nopicture.gif",
		55, 38,
		"TAC-30MILWEAV", "30mm ring for red dot sights.",
		"30mm mount ring.", "",
		"21.55", "0.2",
		"1", 1,
		"Pieces", "111",
		"Rail;Picatinny@", "pd1835647632.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/images/nopicture.gif",
		55, 38,
		"TAC-APML2-1", "Aimpoint Comp  ML2",
		"High quality red-dot sight", "",
		"296", "0.6",
		"1", 1,
		"Pieces", "111",
		"", "pd-665535588.htm",
		"", 1,
		"RDS", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/images/nopicture.gif",
		55, 38,
		"TAC-MP5AD-1", "Streamlight MP5 adaptor",
		"Adaptor to fit M3/M6 to MP5 sub-machine guns", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "127",
		"", "pd234218083.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/images/nopicture.gif",
		55, 38,
		"TAC-M16AD-1", "Streamlight M16/AR15 adaptor",
		"Adaptor to fit M3/M6 to M16/AR15s rifles or carbines", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "127",
		"", "pd363182921.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/images/nopicture.gif",
		55, 38,
		"TAC-EXTAD-1", "Streamlight Extended mag shotgun adaptor",
		"Adaptor to fit M3/M6 to shell tube on shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "127",
		"", "pd-1136781665.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/images/nopicture.gif",
		55, 38,
		"TAC-500AD-1", "Streamlight Mossberg M500 adaptor",
		"Adaptor to fit M3/M6 to M500 shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "127",
		"", "pd-1696695835.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/images/nopicture.gif",
		55, 38,
		"TAC-870AD-1", "Streamlight Remington M870 adaptor",
		"Adaptor to fit M3/M6 to M870 shotgun", "",
		"25.29", "0.3",
		"1", 1,
		"Pieces", "127",
		"", "pd9954971.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/images/nopicture.gif",
		55, 38,
		"TAC-STRM6-1", "Streamlight M6 UTL &amp; laser",
		"Universal Tactical Light and Laser for pistols", "",
		"578.09", "0.5",
		"1", 1,
		"Pieces", "127",
		"", "pd641284673.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/images/nopicture.gif",
		55, 38,
		"TAC-STRM3-1", "Streamlight M3 UTL",
		"Universal Tactical Light for pistols", "",
		"272.39", "0.4",
		"1", 1,
		"Pieces", "127",
		"", "pd208834135.htm",
		"", 1,
		"TACL", "0",
		 0)
	
		Entry[917] = new Element(
		917, "assets/thumb/tn_beltliner.jpg",
		198, 73,
		"WYV-BLP", "Wyvern Belt Liner Pad",
		"Hip Pad for belts", "",
		"16.5", "0.6",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-2136323048.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[918] = new Element(
		918, "assets/thumb/tn_wyvtripouch.jpg",
		199, 116,
		"WYV-TUP", "Wyvern Triple Utility Pouch",
		"Three utility pouches on a base", "",
		"34.5", "1",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd334835108.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/thumb/tn_padbelt.jpg",
		198, 50,
		"BELT-WYV-1", "Wyvern Padded belt",
		"Padded PLCE compatible belt", "",
		"18.5", "0.3",
		"1", 1,
		"Pieces", "136",
		"", "pd1731189874.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/images/nopicture.gif",
		55, 38,
		"WYV-SAP", "Wyvern Single Ammo Pouch",
		"Single ammo pouch (holds 3 x SA80 mags)", "",
		"16.5", "0.6",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd1203586974.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/thumb/tn_wyvammo.jpg",
		198, 176,
		"WYV-DAP", "Wyvern Double Ammo Pouch",
		"Double ammo pouch holding 6 SA80 mags", "",
		"27.5", "1",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Variant;Left Hand@", "pd1874430518.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/thumb/tn_wyvutil.jpg",
		198, 193,
		"WYV-SUP", "Wyvern Single Utility Pouch",
		"For mess tins, water bottles, rations etc.", "",
		"15.5", "0.5",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-1742243422.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/thumb/tn_wyvdblutil.jpg",
		199, 157,
		"WYV-DUP", "Wyvern Double Utility Pouch",
		"Two conjoined utility pouches", "",
		"24", "1",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-1440573490.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/thumb/tn_wyvyoke.jpg",
		199, 153,
		"WYV-YOKE", "Wyvern Yoke",
		"Compatible with PLCE, Wyvern and 58 webbing", "",
		"29.5", "0.7",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd883997356.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/thumb/tn_wyvponchroll.jpg",
		197, 77,
		"WYV- NBC", "Wyvern NBC/Poncho Roll",
		"NBC/Poncho roll cover", "",
		"28", "0.6",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd582550788.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[926] = new Element(
		926, "assets/thumb/tn_wyvressie.jpg",
		198, 185,
		"WYV-RESSIE", "Wyvern Respirator Haversack",
		"Haversack for S10/S6 respirators", "",
		"24", "1.2",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd1341959504.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[927] = new Element(
		927, "assets/thumb/tn_wyvholst.jpg",
		198, 146,
		"WYV-PIS", "Wyvern Pistol holster",
		"Padded holster for belt, hip or leg", "",
		"26.95", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd1721823210.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[928] = new Element(
		928, "assets/images/nopicture.gif",
		55, 38,
		"WYV-KFS", "Wyvern KFS slip",
		"Slip for cutlery", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "136",
		"", "pd-1937784792.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[929] = new Element(
		929, "assets/thumb/tn_wyvffd.jpg",
		198, 161,
		"WYV-FFD", "Wyvern FFD pouch",
		"Field Dressing Pouch", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-1063615820.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[930] = new Element(
		930, "assets/thumb/tn_wyvpismag.jpg",
		199, 184,
		"WYV-SMP", "Wyvern Single Mag Pouch",
		"Holds one mag for most pistols", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd942597632.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[931] = new Element(
		931, "assets/images/nopicture.gif",
		55, 38,
		"WYV-CO", "Wyvern Knife/Compass Pouch",
		"Suitable for holding knife or compass", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd1449031180.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[932] = new Element(
		932, "assets/thumb/tn_wyvradio.jpg",
		199, 172,
		"WYV-RAD", "Wyvern Radio Pouch",
		"Holds PRC349 radio", "",
		"18", "0.6",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd870022872.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[933] = new Element(
		933, "assets/thumb/tn_web (12).jpg",
		131, 150,
		"TAC-58WEB", "58 Pattern webbing full set",
		"", "",
		"29.95", "3",
		"1", 1,
		"Pieces", "136",
		"Spec;Used grade without backpack@", "pd-1855921978.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[934] = new Element(
		934, "assets/thumb/tn_plcebelt.jpg",
		197, 59,
		"BELT-PLCE-1", "PLCE Belt - New",
		"Current Issue British webbing belt", "",
		"16.95", "0.3",
		"1", 1,
		"Pieces", "136",
		"", "pd526576304.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[935] = new Element(
		935, "assets/thumb/tn_plceyoke.jpg",
		199, 135,
		"PLCE-WEBYOKE", "PLCE Webbing Yoke",
		"Current issue webbing yoke", "",
		"19.95", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-1883868598.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[936] = new Element(
		936, "assets/thumb/tn_plcedayoke.jpg",
		199, 136,
		"PLCE-DAYOKE", "PLCE Daysack Yoke",
		"Current issue British Army Daysack yoke", "",
		"22", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd917742100.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[937] = new Element(
		937, "assets/thumb/tn_plcerocket.jpg",
		199, 247,
		"PLCE-POCKETS", "PLCE Daysack/Bergen side pockets",
		"&quot;Rocket&quot; pockets, to fit on side of PLCE bergen or Daysack yoke", "",
		"39", "2",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd243044494.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[938] = new Element(
		938, "assets/thumb/tn_plceutil.jpg",
		199, 182,
		"PLCE-UTIL", "PLCE Utility Pouch",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd1827921976.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[939] = new Element(
		939, "assets/thumb/tn_plceammo.jpg",
		199, 155,
		"PLCE-AMMO", "PLCE Ammo pouches",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@Variant;Left Hand@", "pd1926127506.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[940] = new Element(
		940, "assets/thumb/tn_plceressie.jpg",
		199, 175,
		"PLCE-RESSIE", "PLCE Respirator Pouch",
		"Large haversack for carrying S10/S6 gas mask", "",
		"22.95", "1.2",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-1010241164.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[941] = new Element(
		941, "assets/images/nopicture.gif",
		55, 38,
		"PLCE-WAT", "PLCE Waterbottle pouch",
		"Current Army issue waterbottle webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-1719036690.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[942] = new Element(
		942, "assets/thumb/tn_plceset.jpg",
		198, 194,
		"PLCE-SET", "PLCE Webbing full set",
		"Full genuine issue PLCE webbing set", "",
		"135", "6",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@Condition;Brand New@", "pd1434546584.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[943] = new Element(
		943, "assets/images/nopicture.gif",
		55, 38,
		"PLCE-SET", "PLCE Webbing full set",
		"Full genuine issue PLCE webbing set", "",
		"135", "6",
		"1", 1,
		"Pieces", "119",
		"Color;DPM Camouflage@Condition;Brand New@", "pd1901099151.htm",
		"", 1,
		"TAC", "0",
		 0)
	
		Entry[944] = new Element(
		944, "assets/thumb/tn_wyvtripouch.jpg",
		199, 116,
		"WYV-TUP", "Wyvern Triple Utility Pouch",
		"Three utility pouches on a base", "",
		"34.5", "1",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd-405945167.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[945] = new Element(
		945, "assets/images/nopicture.gif",
		55, 38,
		"WYV-SAP", "Wyvern Single Ammo Pouch",
		"Single ammo pouch (holds 3 x SA80 mags)", "",
		"16.5", "0.6",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd-1929565747.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[946] = new Element(
		946, "assets/thumb/tn_wyvammo.jpg",
		198, 176,
		"WYV-DAP", "Wyvern Double Ammo Pouch",
		"Double ammo pouch holding 6 SA80 mags", "",
		"27.5", "1",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@Variant;Left Hand@", "pd-1682310999.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[947] = new Element(
		947, "assets/thumb/tn_wyvutil.jpg",
		198, 193,
		"WYV-SUP", "Wyvern Single Utility Pouch",
		"For mess tins, water bottles, rations etc.", "",
		"15.5", "0.5",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd1240164603.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[948] = new Element(
		948, "assets/thumb/tn_wyvdblutil.jpg",
		199, 157,
		"WYV-DUP", "Wyvern Double Utility Pouch",
		"Two conjoined utility pouches", "",
		"24", "1",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd1370879671.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[949] = new Element(
		949, "assets/thumb/tn_wyvressie.jpg",
		198, 185,
		"WYV-RESSIE", "Wyvern Respirator Haversack",
		"Haversack for S10/S6 respirators", "",
		"24", "1.2",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd-575227853.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[950] = new Element(
		950, "assets/images/nopicture.gif",
		55, 38,
		"WYV-KFS-1", "Wyvern KFS slip",
		"Slip for cutlery", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "122",
		"", "pd1469475183.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[951] = new Element(
		951, "assets/thumb/tn_wyvffd.jpg",
		198, 161,
		"WYV-FFD", "Wyvern FFD pouch",
		"Field Dressing Pouch", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd1173375285.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[952] = new Element(
		952, "assets/images/nopicture.gif",
		55, 38,
		"WYV-CO", "Wyvern Knife/Compass Pouch",
		"Suitable for holding knife or compass", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd439426705.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[953] = new Element(
		953, "assets/thumb/tn_wyvradio.jpg",
		199, 172,
		"WYV-RAD", "Wyvern Radio Pouch",
		"Holds PRC349 radio", "",
		"18", "0.6",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd-1959206483.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[954] = new Element(
		954, "assets/thumb/tn_wyvpismag.jpg",
		199, 184,
		"WYV-SMP", "Wyvern Single Mag Pouch",
		"Holds one mag for most pistols", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@", "pd419425929.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[955] = new Element(
		955, "assets/thumb/tn_plceutil.jpg",
		199, 182,
		"PLCE-UTIL", "PLCE Utility Pouch",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.7",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@Condition;Brand New@", "pd1520197925.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[956] = new Element(
		956, "assets/thumb/tn_plceammo.jpg",
		199, 155,
		"PLCE-AMMO", "PLCE Ammo pouches",
		"Current issue British Army webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@Condition;Brand New@Variant;Left Hand@", "pd-626533481.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[957] = new Element(
		957, "assets/thumb/tn_plceressie.jpg",
		199, 175,
		"PLCE-RESSIE", "PLCE Respirator Pouch",
		"Large haversack for carrying S10/S6 gas mask", "",
		"22.95", "1.2",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@Condition;Brand New@", "pd2068813077.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[958] = new Element(
		958, "assets/images/nopicture.gif",
		55, 38,
		"PLCE-WAT", "PLCE Waterbottle pouch",
		"Current Army issue waterbottle webbing pouch", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "122",
		"Color;DPM Camouflage@Condition;Brand New@", "pd-1636325369.htm",
		"", 1,
		"TWEB", "0",
		 0)
	
		Entry[959] = new Element(
		959, "assets/images/nopicture.gif",
		55, 38,
		"WYV-PIS", "Wyvern Pistol holster",
		"Padded holster for belt, hip or leg", "",
		"26.95", "0.8",
		"1", 1,
		"Pieces", "121",
		"Color;DPM Camouflage@", "pd-479505303.htm",
		"", 1,
		"HOLST", "0",
		 0)
	
		Entry[960] = new Element(
		960, "assets/thumb/tn_arktishdyoke.jpg",
		200, 169,
		"ARK-HDYOKE", "Arktis Heavy-Duty yoke",
		"Hardwearing PLCE compatible yoke", "",
		"31.95", "1",
		"1", 1,
		"Pieces", "136",
		"", "pd237760236.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[961] = new Element(
		961, "assets/thumb/tn_arktisdoubleammopouch.jpg",
		200, 150,
		"ARK-DAP", "Arktis Double Ammo Pouch",
		"PLCE Compatible quality ammo pouches", "",
		"28.5", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd72959416.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[962] = new Element(
		962, "assets/thumb/tn_rationpouch.jpg",
		200, 150,
		"ARK-RAT", "Arktis Ration Pouch",
		"Quick-Release ration pouch", "",
		"15.95", "1",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-643084758.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[963] = new Element(
		963, "assets/thumb/tn_arktistriplepouchset.jpg",
		200, 150,
		"ARK-RPSQR", "Arktis Rear Pouch Set",
		"Quick Release rear pouch set", "",
		"34.95", "1.5",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-75516352.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[964] = new Element(
		964, "assets/thumb/tn_arktissingleammopch.jpg",
		200, 150,
		"ARK-SAP", "Arktis Single Ammo Pouch",
		"PLCE Compatible quality ammo pouches", "",
		"14.5", "0.8",
		"1", 1,
		"Pieces", "136",
		"Color;DPM Camouflage@", "pd-1432434100.htm",
		"", 1,
		"WEB", "0",
		 0)
	
		Entry[965] = new Element(
		965, "assets/thumb/tn_sweet16.jpg",
		200, 59,
		"AR-LOG-S16", "Logun Sweet 16",
		"It&rsquo;s here and it&rsquo;s fantastic!", "",
		"485", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1055408545.htm",
		"", 1,
		"AAR", "0",
		 0)
	
		Entry[966] = new Element(
		966, "assets/thumb/tn_softie3.jpg",
		199, 172,
		"SLP-S3", "Softie 3 Merlin",
		"Lightweight Snugpak sleeping bag", "",
		"69", "0.75",
		"1", 1,
		"Pieces", "114",
		"", "pd-2039193063.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[967] = new Element(
		967, "assets/thumb/tn_softie6.jpg",
		198, 174,
		"SLP-S6", "Softie 6 Kestrel",
		"Lightweight Snugpak sleeping bag", "",
		"85", "1.1",
		"1", 1,
		"Pieces", "114",
		"", "pd-1401005585.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[968] = new Element(
		968, "assets/thumb/tn_softie9.jpg",
		199, 144,
		"SLP-S9", "Softie 9 Hawk",
		"Lightweight Snugpak sleeping bag", "",
		"95", "1.4",
		"1", 1,
		"Pieces", "114",
		"", "pd-1320440395.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[969] = new Element(
		969, "assets/thumb/tn_softie10.jpg",
		198, 198,
		"SLP-S10", "Softie 10 Harrier",
		"Lightweight Snugpak sleeping bag", "",
		"105", "1.6",
		"1", 1,
		"Pieces", "114",
		"", "pd690847467.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[970] = new Element(
		970, "assets/thumb/tn_softie12.jpg",
		199, 157,
		"SLP-S12", "Softie 12 Osprey",
		"Lightweight Snugpak sleeping bag", "",
		"115", "1.75",
		"1", 1,
		"Pieces", "114",
		"", "pd-1330656495.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[971] = new Element(
		971, "assets/thumb/tn_antarctica.jpg",
		199, 154,
		"SLP-A2", "Antarctica 2",
		"Snugpak sleeping bag", "",
		"135", "2.5",
		"1", 1,
		"Pieces", "114",
		"", "pd1124387751.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[972] = new Element(
		972, "assets/thumb/tn_58sleeper.jpg",
		199, 140,
		"SLP-58", "Genuine 58 Pattern Sleeper",
		"Old issue Army sleeping bags", "",
		"29.95", "3",
		"1", 1,
		"Pieces", "114",
		"Size;Regular length@", "pd1312810405.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[973] = new Element(
		973, "assets/thumb/tn_adventure.jpg",
		199, 145,
		"SLP-ADV", "Adventurer Combat Sleeping Bags",
		"Military style sleeping bags", "",
		"29.95", "1.45",
		"1", 1,
		"Pieces", "114",
		"Variant;Adventurer 1@", "pd1115651095.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[974] = new Element(
		974, "assets/thumb/tn_superbag.jpg",
		198, 173,
		"SLP-SPRBAG", "Buffalo Superbag",
		"Extremely High quality Sleeping Bag", "",
		"179.95", "1.8",
		"1", 1,
		"Pieces", "114",
		"Size;L@", "pd183391123.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[975] = new Element(
		975, "assets/thumb/tn_compression.jpg",
		199, 159,
		"SLP-BAC", "British Army Compression bag",
		"Current issue sleeping bag", "",
		"69.95", "3.5",
		"1", 1,
		"Pieces", "114",
		"", "pd2044874745.htm",
		"", 1,
		"SLP", "0",
		 0)
	
		Entry[976] = new Element(
		976, "assets/thumb/tn_snuggyhdrest.jpg",
		198, 154,
		"SLP-SNUGGY", "Snuggy Headrest",
		"Snugpack pillow", "",
		"7.5", "0.4",
		"1", 1,
		"Pieces", "115",
		"", "pd-1746971091.htm",
		"", 1,
		"SLA", "0",
		 0)
	
		Entry[977] = new Element(
		977, "assets/thumb/tn_thermalsleep.jpg",
		198, 143,
		"SLP-SNTHM", "Fleece Liner",
		"Snugpack thermal sleeping bag liner", "",
		"39.95", "0.65",
		"1", 1,
		"Pieces", "115",
		"", "pd-1303102429.htm",
		"", 1,
		"SLA", "0",
		 0)
	
		Entry[978] = new Element(
		978, "assets/thumb/tn_natomat.jpg",
		198, 62,
		"SLA-SLPMAT", "NATO style sleepmat",
		"Forces sleep mat", "",
		"10.95", "0.3",
		"1", 1,
		"Pieces", "115",
		"", "pd-1383269070.htm",
		"", 1,
		"SLA", "0",
		 0)
	
		Entry[979] = new Element(
		979, "assets/thumb/tn_thermalsleep.jpg",
		198, 143,
		"SLP-SNTHM-1", "Fleece Liner",
		"Snugpack thermal sleeping bag liner", "",
		"39.95", "0.65",
		"1", 1,
		"Pieces", "53",
		"", "pd1170124464.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[980] = new Element(
		980, "assets/thumb/tn_antarctica.jpg",
		199, 154,
		"SLP-A2-2", "Antarctica 2",
		"Snugpak sleeping bag", "",
		"135", "2.5",
		"1", 1,
		"Pieces", "53",
		"", "pd1055760191.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[981] = new Element(
		981, "assets/thumb/tn_superbag.jpg",
		198, 173,
		"SLP-SPRBAG", "Buffalo Superbag",
		"Extremely High quality Sleeping Bag", "",
		"179.95", "1.8",
		"1", 1,
		"Pieces", "53",
		"Size;L@", "pd-79187067.htm",
		"", 1,
		"CGLO", "0",
		 0)
	
		Entry[982] = new Element(
		982, "assets/thumb/tn_jacket (11).jpg",
		148, 150,
		"THERM-BUFF", "Buffalo Special 6",
		"Mountain shirt", "",
		"89", "0.9",
		"1", 1,
		"Pieces", "112",
		"Size;36 inch chest@Color;Black@", "pd-1556670612.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[983] = new Element(
		983, "assets/thumb/tn_antarcticshirt.jpg",
		198, 195,
		"COL-ANTARC", "Arktis Antarctica shirt",
		"Antarctica shirt", "",
		"36.95", "1.3",
		"1", 1,
		"Pieces", "112",
		"Size;L@", "pd1809440540.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[984] = new Element(
		984, "assets/thumb/tn_norgy.jpg",
		199, 178,
		"COL-NOR", "Norwegian shirt",
		"Cold weather field shirt", "",
		"19.95", "0.9",
		"1", 1,
		"Pieces", "112",
		"Size;L@Color;Black@", "pd56969558.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[985] = new Element(
		985, "assets/thumb/tn_jacket (4).jpg",
		191, 150,
		"DES-JAC", "British 2-tone Desert Jacket",
		"", "",
		"12.95", "0.6",
		"1", 1,
		"Pieces", "112",
		"Size;L@Length;Long@", "pd1620325068.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[986] = new Element(
		986, "assets/thumb/tn_pilotshirt.jpg",
		199, 297,
		"SHIRT-PIL", "Pilots Shirt",
		"Long or Short sleeve blue shirts", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "112",
		"Size;15 inch collar@Variant;Long Sleeve@", "pd1440823270.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[987] = new Element(
		987, "assets/thumb/tn_germshirt.jpg",
		199, 305,
		"SHIRT-GMNA", "German Army shirt",
		"Olive Green used grade shirt", "",
		"3.5", "0.3",
		"1", 1,
		"Pieces", "112",
		"Size;36 inch chest@", "pd-1292845935.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[988] = new Element(
		988, "assets/thumb/tn_britolivesh.jpg",
		199, 210,
		"SHIRT-OG", "Olive Lightweight shirt",
		"British Army issue shirt", "",
		"11.95", "0.3",
		"1", 1,
		"Pieces", "112",
		"Size;L@", "pd-276021398.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[989] = new Element(
		989, "assets/thumb/tn_95sht.jpg",
		198, 160,
		"SHIRT-S95", "Soldier &rsquo;95 shirt",
		"British Army issue DPM shirt", "",
		"29.95", "0.8",
		"1", 1,
		"Pieces", "112",
		"Size;L@", "pd1479121832.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[990] = new Element(
		990, "assets/thumb/tn_tropsht.jpg",
		199, 142,
		"SHIRT-TROP", "British Tropical Shirt",
		"DPM Tropical shirt", "",
		"29.5", "0.4",
		"1", 1,
		"Pieces", "112",
		"Size;34 inch chest@", "pd-1970035299.htm",
		"", 1,
		"SHI", "0",
		 0)
	
		Entry[991] = new Element(
		991, "assets/thumb/tn_pilotshirt.jpg",
		199, 297,
		"SHIRT-PIL", "Pilots Shirt",
		"Long or Short sleeve blue shirts", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "137",
		"Size;15 inch collar@Variant;Long Sleeve@", "pd-912205549.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[992] = new Element(
		992, "assets/thumb/tn_germshirt.jpg",
		199, 305,
		"SHIRT-GMNA", "German Army shirt",
		"Olive Green used grade shirt", "",
		"3.5", "0.3",
		"1", 1,
		"Pieces", "137",
		"Size;36 inch chest@", "pd906579075.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[993] = new Element(
		993, "assets/thumb/tn_britolivesh.jpg",
		199, 210,
		"SHIRT-OG", "Olive Lightweight shirt",
		"British Army issue shirt", "",
		"11.95", "0.3",
		"1", 1,
		"Pieces", "137",
		"Size;L@", "pd346793442.htm",
		"", 1,
		"WORK", "0",
		 0)
	
		Entry[994] = new Element(
		994, "assets/thumb/tn_trousers (3).jpg",
		98, 150,
		"DES-TRO", "British 2-tone Desert Trousers",
		"", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "128",
		"Size;M@Leg Length;Long@", "pd-1983339284.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[995] = new Element(
		995, "assets/thumb/tn_trousers (7).jpg",
		99, 150,
		"WAT-95PT", "95 Pattern Goretex Trousers",
		"British current issue DPM Goretex trousers", "",
		"35", "0.7",
		"1", 1,
		"Pieces", "129",
		"Size;L@", "pd1328353013.htm",
		"", 1,
		"TRSW", "0",
		 0)
	
		Entry[996] = new Element(
		996, "assets/images/nopicture.gif",
		55, 38,
		"WAT-HWNT", "Heavyweight Nylon Trousers",
		"Old issue British DPM waterproof Trousers", "",
		"12.5", "1.1",
		"1", 1,
		"Pieces", "129",
		"Size;28 inch@", "pd-90783001.htm",
		"", 1,
		"TRSW", "0",
		 0)
	
		Entry[997] = new Element(
		997, "assets/thumb/tn_trousers.jpg",
		200, 150,
		"TRS-SPICE", "&quot;Spice&quot; Camo",
		"Coloured camouflage trousers", "",
		"19.95", "0.8",
		"1", 1,
		"Pieces", "128",
		"Size;L@Color;Orange@", "pd1547210451.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[998] = new Element(
		998, "assets/thumb/tn_95trs.jpg",
		199, 242,
		"TRS-S95", "Soldier 95 trousers",
		"Current issue British Army trousers", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "128",
		"Size;28 inch waist@Length;Long@", "pd-1765411324.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[999] = new Element(
		999, "assets/thumb/tn_94trs.jpg",
		199, 264,
		"TRS-94", "94 pattern trousers",
		"Temperate DPM trousers", "",
		"25", "1",
		"1", 1,
		"Pieces", "128",
		"Size;28 inch waist@Length;Long@", "pd310189335.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1000] = new Element(
		1000, "assets/thumb/tn_98pattlightwttrs.jpg",
		199, 261,
		"TRS-98LTW", "98 pattern Lightweights",
		"Current issue Lightweight trousers", "",
		"23.95", "0.7",
		"1", 1,
		"Pieces", "128",
		"Size;28 inch waist@Condition;Brand New@", "pd-863876729.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1001] = new Element(
		1001, "assets/thumb/tn_lightweighttrs.jpg",
		199, 263,
		"TRS-LTW", "Lightweight Trousers",
		"Previous issue lightweight trousers", "",
		"23.95", "0.7",
		"1", 1,
		"Pieces", "128",
		"Size;28 inch waist@", "pd2060407572.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1002] = new Element(
		1002, "assets/thumb/tn_fleckytrs.jpg",
		199, 277,
		"TRS-FLKTRN", "Flecktarn Trousers",
		"German Army issue trousers", "",
		"12.95", "0.7",
		"1", 1,
		"Pieces", "128",
		"Size;28 inch waist@", "pd870494711.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1003] = new Element(
		1003, "assets/thumb/tn_bdutrs.jpg",
		199, 247,
		"TRS-BDU", "BDU Trousers",
		"American issue trousers", "",
		"34.95", "0.8",
		"1", 1,
		"Pieces", "128",
		"Size;L@Color;Black@Leg Length;Long@", "pd-145996375.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1004] = new Element(
		1004, "assets/thumb/tn_gprations.jpg",
		200, 193,
		"FOOD-GP", "24 Hour GP Ration Pack",
		"British Army Ration Pack", "",
		"9.95", "1",
		"1", 1,
		"Pieces", "103",
		"Menu;Menu A@", "pd1454557891.htm",
		"", 1,
		"FOOD", "0",
		 0)
	
		Entry[1005] = new Element(
		1005, "assets/thumb/tn_yankscoff.jpg",
		200, 228,
		"FOOD-MRE", "U.S Genuine MRE rations",
		"American &quot;Meals Ready to Eat&quot;", "",
		"8.95", "0.8",
		"1", 1,
		"Pieces", "103",
		"Menu;Meat@", "pd-1996566715.htm",
		"", 1,
		"FOOD", "0",
		 0)
	
		Entry[1006] = new Element(
		1006, "assets/thumb/tn_dryfoodshit.jpg",
		200, 139,
		"FOOD-RR", "Regal Raven Ration Packs",
		"Single boil in bag meal", "",
		"2.99", "0.4",
		"1", 1,
		"Pieces", "103",
		"Menu;Beef and Vegetables@", "pd738806323.htm",
		"", 1,
		"FOOD", "0",
		 0)
	
		Entry[1007] = new Element(
		1007, "assets/thumb/tn_kendelmintpuke.jpg",
		200, 219,
		"FOOD-KEN", "Kendall Mint Cake",
		"Energy bar", "",
		"0.5", "0.04",
		"1", 1,
		"Pieces", "103",
		"Size;Large 113g Bar@", "pd1476417643.htm",
		"", 1,
		"FOOD", "0",
		 0)
	
		Entry[1008] = new Element(
		1008, "assets/thumb/tn_giwaterbottle.jpg",
		176, 200,
		"BOT-GIWB", "G.I Water Bottle",
		"850ml water bottle", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "39",
		"Cover;Camo@Material;Aluminium@", "pd1039460916.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1009] = new Element(
		1009, "assets/images/nopicture.gif",
		55, 38,
		"BOT-USTWBC", "U.S Type Waterbottle &amp; Cover",
		"G.I 2 pint canteen", "",
		"8.95", "0.7",
		"1", 1,
		"Pieces", "39",
		"Cover;Camo@", "pd599442816.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1010] = new Element(
		1010, "assets/thumb/tn_58bottleandcup.jpg",
		200, 150,
		"BOT-58", "&rsquo;58 Pattern Bottles and Cups",
		"British Army issue bottles and cups", "",
		"9.95", "0.8",
		"1", 1,
		"Pieces", "39",
		"Type;Genuine@Variant;Bottle and Cup@", "pd1026341958.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1011] = new Element(
		1011, "assets/thumb/tn_foldacup.jpg",
		200, 150,
		"BOT-MFAC", "Military Fold-A-Cup",
		"Foldable cup", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "39",
		"", "pd-173911068.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1012] = new Element(
		1012, "assets/thumb/tn_unbreakableflask.jpg",
		200, 150,
		"BOT-UBFLK", "Unbreakable Flask",
		"Stainless steel vacuum flask", "",
		"23.95", "0.6",
		"1", 1,
		"Pieces", "39",
		"Capacity;0.5 Litre@", "pd-959931897.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1013] = new Element(
		1013, "assets/thumb/tn_DSCF0047.jpg",
		139, 150,
		"NBC-58-1", "&rsquo;58 water bottle with drinking tube connector",
		"&rsquo;58 pattern waterbottle with connector for use with S10 respirator", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "39",
		"", "pd-929739891.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1014] = new Element(
		1014, "assets/thumb/tn_waterpurificationkit.jpg",
		200, 150,
		"BOT-NOMAD", "Nomad Water Purification Kit",
		"Water Purification Kit", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "39",
		"", "pd-1341869949.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1015] = new Element(
		1015, "assets/thumb/tn_aquapurifier.jpg",
		200, 150,
		"BOT-APW", "Aqua Pure Water Purifier",
		"Water Purification Kit", "",
		"37.5", "0.8",
		"1", 1,
		"Pieces", "39",
		"", "pd2087040617.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1016] = new Element(
		1016, "assets/images/nopicture.gif",
		55, 38,
		"BOT-APWR", "Aqua Pure Water Purifier Filter",
		"Replacement Filter", "",
		"37.5", "0.3",
		"1", 1,
		"Pieces", "39",
		"", "pd-1490614593.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1017] = new Element(
		1017, "assets/thumb/tn_puritabs.jpg",
		200, 150,
		"BOT-PURITAB", "Aquaclear Puritabs",
		"Water Purification Tablets", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "39",
		"", "pd609052421.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1018] = new Element(
		1018, "assets/thumb/tn_iodinetablet.jpg",
		200, 150,
		"BOT-IOD", "Bottled Iodine Drinking water tablets",
		"Water disinfectant", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "39",
		"", "pd1162942651.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1019] = new Element(
		1019, "assets/thumb/tn_placcymugs.jpg",
		200, 150,
		"BOT-CUP", "Plastic Cup",
		"0.5L plastic cup", "",
		"1.95", "0.2",
		"1", 1,
		"Pieces", "39",
		"", "pd12204385.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1020] = new Element(
		1020, "assets/thumb/tn_sasmug.jpg",
		200, 150,
		"BOT-MUG", "Military Emblem Mugs",
		"Mugs bearing Regimental insignia", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "39",
		"Regiment;Parachute Regiment@", "pd463663032.htm",
		"", 1,
		"BOT", "0",
		 0)
	
		Entry[1021] = new Element(
		1021, "assets/thumb/tn_medkit2.jpg",
		200, 236,
		"FA-WMFAK", "Waterproof Mountain First Aid Kit",
		"Quality First Aid Kit", "",
		"18.95", "0.8",
		"1", 1,
		"Pieces", "70",
		"", "pd904802657.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1022] = new Element(
		1022, "assets/thumb/tn_mleaderfaid.jpg",
		200, 150,
		"FA-MLFAK", "Mountain Leaders First Aid Kit",
		"Quality First Aid Kit", "",
		"39.95", "1.1",
		"1", 1,
		"Pieces", "70",
		"", "pd701028983.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1023] = new Element(
		1023, "assets/thumb/tn_medpack.jpg",
		200, 173,
		"FA-MFAK", "Mountain First Aid Kit",
		"Quality First Aid Kit", "",
		"21.95", "0.7",
		"1", 1,
		"Pieces", "70",
		"", "pd-1615642243.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1024] = new Element(
		1024, "assets/thumb/tn_healheel.jpg",
		200, 150,
		"FA-PHHBK", "Pioneer Heel Heal Kit",
		"Blister kit", "",
		"5.95", "0.4",
		"1", 1,
		"Pieces", "70",
		"", "pd1276991475.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1025] = new Element(
		1025, "assets/thumb/tn_dentalkit.jpg",
		200, 238,
		"FA-DENTAL", "Dental First Aid Kit",
		"Emergency Dental kit", "",
		"9.95", "0.4",
		"1", 1,
		"Pieces", "70",
		"", "pd-1710331047.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1026] = new Element(
		1026, "assets/thumb/tn_gregsonpack.jpg",
		200, 190,
		"FA-GREGS", "Gregson First Aid Pack",
		"First Aid Kit for Advanced Emergency situations", "",
		"29.95", "1.2",
		"1", 1,
		"Pieces", "70",
		"", "pd182748463.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1027] = new Element(
		1027, "assets/thumb/tn_compactfirstaidkit.jpg",
		200, 150,
		"FA-FACK", "First Aid Compact Kit",
		"Compact First Aid Pack", "",
		"14.95", "0.6",
		"1", 1,
		"Pieces", "70",
		"", "pd-1918711051.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1028] = new Element(
		1028, "assets/thumb/tn_gregsonpacksmall.jpg",
		187, 200,
		"FA-LSAV", "Lifesaver No.2 First Aid Kit",
		"Basic First Aid Pack", "",
		"29.95", "0.8",
		"1", 1,
		"Pieces", "70",
		"", "pd-194585045.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1029] = new Element(
		1029, "assets/thumb/tn_sterileset.jpg",
		200, 150,
		"FA-STER", "Sterile Set",
		"First Aid set", "",
		"17.95", "0.7",
		"1", 1,
		"Pieces", "70",
		"", "pd1885158481.htm",
		"", 1,
		"FA", "0",
		 0)
	
		Entry[1030] = new Element(
		1030, "assets/images/nopicture.gif",
		55, 38,
		"SURV-TRVL", "Travellers Survival Kit",
		"Day to day survival kit", "",
		"23.95", "1.2",
		"1", 1,
		"Pieces", "118",
		"", "pd1593538716.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1031] = new Element(
		1031, "assets/thumb/tn_tinofstuff.jpg",
		200, 142,
		"SURV-MILL", "Millenium Survival Kit",
		"Advanced survival kit", "",
		"18.95", "1",
		"1", 1,
		"Pieces", "118",
		"", "pd616824874.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1032] = new Element(
		1032, "assets/images/nopicture.gif",
		55, 38,
		"SURV-SURVSYS", "Survival System",
		"Basic survival kit", "",
		"14.95", "0.8",
		"1", 1,
		"Pieces", "118",
		"", "pd-825079192.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1033] = new Element(
		1033, "assets/images/nopicture.gif",
		55, 38,
		"SURV-PERS", "Personal Safety Kit",
		"Pocket size survival kit", "",
		"6.95", "0.5",
		"1", 1,
		"Pieces", "118",
		"", "pd1606473430.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1034] = new Element(
		1034, "assets/images/nopicture.gif",
		55, 38,
		"SURV-UNIV", "Universal Pouch",
		"Storage pouch", "",
		"8.95", "0.3",
		"1", 1,
		"Pieces", "118",
		"", "pd2067542260.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1035] = new Element(
		1035, "assets/images/nopicture.gif",
		55, 38,
		"SURV-TIN", "Survival Tin",
		"Brass tin", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "118",
		"", "pd-821964734.htm",
		"", 1,
		"SURV", "0",
		 0)
	
		Entry[1036] = new Element(
		1036, "assets/thumb/tn_firekit.jpg",
		200, 192,
		"FIRE-MFS", "Matchless Fire Set",
		"Fire lighting kit", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "69",
		"", "pd1562484567.htm",
		"", 1,
		"FIRE", "0",
		 0)
	
		Entry[1037] = new Element(
		1037, "assets/thumb/tn_cnadle.jpg",
		200, 418,
		"FIRE-LLC", "Long-Life Candles",
		"Long lasting candles", "",
		"3.99", "0.3",
		"1", 1,
		"Pieces", "69",
		"", "pd-409923235.htm",
		"", 1,
		"FIRE", "0",
		 0)
	
		Entry[1038] = new Element(
		1038, "assets/thumb/tn_fireset.jpg",
		200, 321,
		"FIRE-FFS", "Fire Flint &amp; Striker",
		"Fire lighting tools", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "69",
		"", "pd903031507.htm",
		"", 1,
		"FIRE", "0",
		 0)
	
		Entry[1039] = new Element(
		1039, "assets/thumb/tn_flint.jpg",
		200, 310,
		"FIRE-AWFM", "All Weather Flint and Magnesium",
		"Firemaking flint and magnesium", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "69",
		"", "pd-1207436999.htm",
		"", 1,
		"FIRE", "0",
		 0)
	
		Entry[1040] = new Element(
		1040, "assets/thumb/tn_stormmatches.jpg",
		200, 150,
		"FIRE-SURV", "Survival Matches",
		"Lifeboat matches", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "69",
		"Variant;Lifeboat matches in plastic drum@", "pd1081830667.htm",
		"", 1,
		"FIRE", "0",
		 0)
	
		Entry[1041] = new Element(
		1041, "assets/thumb/tn_2tonecamstick.jpg",
		200, 150,
		"CAPO-UKCC", "U.K Cam Paint",
		"British Issue Cam cream", "",
		"3.5", "0.1",
		"1", 1,
		"Pieces", "68",
		"", "pd-553681762.htm",
		"", 1,
		"CAPO", "0",
		 0)
	
		Entry[1042] = new Element(
		1042, "assets/thumb/tn_cammypaint.jpg",
		200, 322,
		"CAPO-CAMOCOM", "Camo Compact",
		"Four colour camo cream", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "68",
		"", "pd1323396092.htm",
		"", 1,
		"CAPO", "0",
		 0)
	
		Entry[1043] = new Element(
		1043, "assets/thumb/tn_wipeout.jpg",
		200, 237,
		"CAPO-WO", "Wipe Out",
		"Cam Cream Remover", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "68",
		"", "pd-883121526.htm",
		"", 1,
		"CAPO", "0",
		 0)
	
		Entry[1044] = new Element(
		1044, "assets/images/nopicture.gif",
		55, 38,
		"COOK-TIT1", "Three Piece Titanium Cook set",
		"Titanium Cookware set", "",
		"39.95", "0.7",
		"1", 1,
		"Pieces", "54",
		"", "pd395561513.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1045] = new Element(
		1045, "assets/images/nopicture.gif",
		55, 38,
		"COOK-TIT2", "Titanium KFS Set",
		"Titanium Knife, Fork and Spoon set", "",
		"22.95", "0.2",
		"1", 1,
		"Pieces", "54",
		"", "pd-224771969.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1046] = new Element(
		1046, "assets/thumb/tn_hexyburner.jpg",
		200, 150,
		"COOK-HEXYBURN", "Hexamine Portable Cooker",
		"British Army Hexy Burner", "",
		"4.5", "0.4",
		"1", 1,
		"Pieces", "54",
		"", "pd1734489797.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1047] = new Element(
		1047, "assets/thumb/tn_hexyblock.jpg",
		200, 150,
		"COOK-HEXYTAB", "Hexamine Fuel Block",
		"Hexamine Fuel tablet pack", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "54",
		"", "pd712601211.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1048] = new Element(
		1048, "assets/thumb/tn_messtins.jpg",
		200, 150,
		"COOK-MESS", "Mess Tins",
		"Genuine Billie Cans", "",
		"5.5", "0.6",
		"1", 1,
		"Pieces", "54",
		"", "pd1903789345.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1049] = new Element(
		1049, "assets/thumb/tn_dinnerkit2.jpg",
		200, 150,
		"COOK-BKU", "Black Knight Uno Cookset",
		"Non stick one man cookset", "",
		"13.95", "0.8",
		"1", 1,
		"Pieces", "54",
		"", "pd433804343.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1050] = new Element(
		1050, "assets/thumb/tn_dinnerkit.jpg",
		200, 150,
		"COOK-HOBO", "Hobo &rsquo;Lone Wolf&rsquo; Cookset",
		"Three piece cookset", "",
		"12.5", "0.6",
		"1", 1,
		"Pieces", "54",
		"", "pd408481203.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1051] = new Element(
		1051, "assets/thumb/tn_zestotherm.jpg",
		200, 150,
		"COOK-ZEST", "Zest-O-Therm Food Heater",
		"Water reactant food heater", "",
		"0.99", "0.1",
		"1", 1,
		"Pieces", "54",
		"", "pd1829959449.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1052] = new Element(
		1052, "assets/thumb/tn_plate.jpg",
		200, 150,
		"COOK-PLATE", "Plastic Plates",
		"Military style olive green plate", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "54",
		"Variant;Deep Plate 8.5 inch diameter@", "pd56707326.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1053] = new Element(
		1053, "assets/thumb/tn_kfsset.jpg",
		200, 150,
		"COOK-KFS", "KFS Clip Set",
		"Knife, Fork, Spoon set", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "54",
		"", "pd-543322276.htm",
		"", 1,
		"COOK", "0",
		 0)
	
		Entry[1054] = new Element(
		1054, "assets/thumb/tn_mossnet.jpg",
		200, 146,
		"MOS-MIC", "Micro Mosquito Net",
		"Small Mossie net", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "93",
		"Variant;Duo Two-Man@", "pd735406431.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1055] = new Element(
		1055, "assets/images/nopicture.gif",
		55, 38,
		"MOS-USJMN", "U.S Jungle Mosquito Net",
		"American Mossie Net", "",
		"13.95", "0.6",
		"1", 1,
		"Pieces", "93",
		"Color;Olive Green@", "pd740287835.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1056] = new Element(
		1056, "assets/images/nopicture.gif",
		55, 38,
		"MOS-HEADNET", "Mosquito Headnet",
		"Mossie headnet", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "93",
		"", "pd182736641.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1057] = new Element(
		1057, "assets/thumb/tn_mossguard1.jpg",
		200, 433,
		"MOS-MOSI", "Mosi-Guard",
		"Insect Repellant", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "93",
		"", "pd766376215.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1058] = new Element(
		1058, "assets/images/nopicture.gif",
		55, 38,
		"MOS-PERME", "Mosquito Net Protection: Permethrin",
		"Permethrin mossie net impregnator", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "93",
		"", "pd367264029.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1059] = new Element(
		1059, "assets/thumb/tn_insectrepplent.jpg",
		200, 320,
		"MOS-EX50", "Expedition 50",
		"Insect Repellant", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "93",
		"", "pd-857300845.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1060] = new Element(
		1060, "assets/thumb/tn_mossaway.jpg",
		200, 326,
		"MOS-EX100", "Expedition 100",
		"Insect Repellant", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "93",
		"", "pd354903289.htm",
		"", 1,
		"MOS", "0",
		 0)
	
		Entry[1061] = new Element(
		1061, "assets/thumb/tn_tropicalhammock.jpg",
		200, 150,
		"HAM-TROP", "Tropical Hammock",
		"Heavy-duty hammock", "",
		"22.95", "0.7",
		"1", 1,
		"Pieces", "79",
		"", "pd341223780.htm",
		"", 1,
		"HAM", "0",
		 0)
	
		Entry[1062] = new Element(
		1062, "assets/thumb/tn_hammock.jpg",
		200, 161,
		"HAM-MINI", "Mini Hammock",
		"Compact Hammock", "",
		"9.95", "0.5",
		"1", 1,
		"Pieces", "79",
		"", "pd-2086355406.htm",
		"", 1,
		"HAM", "0",
		 0)
	
		Entry[1063] = new Element(
		1063, "assets/thumb/tn_foldacup.jpg",
		200, 150,
		"BOT-MFAC-1", "Military Fold-A-Cup",
		"Foldable cup", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "55",
		"", "pd551912042.htm",
		"", 1,
		"CUPS", "0",
		 0)
	
		Entry[1064] = new Element(
		1064, "assets/thumb/tn_sasmug.jpg",
		200, 150,
		"BOT-MUG", "Military Emblem Mugs",
		"Mugs bearing Regimental insignia", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "55",
		"Regiment;Parachute Regiment@", "pd-992962904.htm",
		"", 1,
		"CUPS", "0",
		 0)
	
		Entry[1065] = new Element(
		1065, "assets/thumb/tn_placcymugs.jpg",
		200, 150,
		"BOT-CUP-1", "Plastic Cup",
		"0.5L plastic cup", "",
		"1.95", "0.2",
		"1", 1,
		"Pieces", "55",
		"", "pd1314052738.htm",
		"", 1,
		"CUPS", "0",
		 0)
	
		Entry[1066] = new Element(
		1066, "assets/thumb/tn_sassurvivalhandbook.jpg",
		200, 150,
		"BOOK-SAS", "SAS Survival Handbook",
		"By Lofty Wiseman", "",
		"19.95", "0.8",
		"1", 1,
		"Pieces", "38",
		"", "pd1825845889.htm",
		"", 1,
		"BOOK", "0",
		 0)
	
		Entry[1067] = new Element(
		1067, "assets/thumb/tn_urbansurvivalbook.jpg",
		200, 150,
		"BOOK-SASU", "SAS Urban Survival Handbook",
		"By Lofty Wiseman", "",
		"19.95", "0.8",
		"1", 1,
		"Pieces", "38",
		"", "pd-157335401.htm",
		"", 1,
		"BOOK", "0",
		 0)
	
		Entry[1068] = new Element(
		1068, "assets/thumb/tn_sasselfdefence.jpg",
		200, 150,
		"BOOK-CGSSD", "SAS Self Defence",
		"Collins Gem Guide", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "38",
		"", "pd-773548899.htm",
		"", 1,
		"BOOK", "0",
		 0)
	
		Entry[1069] = new Element(
		1069, "assets/thumb/tn_sasfirstaid.jpg",
		200, 150,
		"BOOK-CGFA", "SAS First Aid",
		"Collins Gem Guide", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "38",
		"", "pd-1036558317.htm",
		"", 1,
		"BOOK", "0",
		 0)
	
		Entry[1070] = new Element(
		1070, "assets/thumb/tn_sassurvivalpocket.jpg",
		200, 150,
		"BOOK-CGSG", "SAS Survival Guide",
		"Collins Gem Guide", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "38",
		"", "pd997470329.htm",
		"", 1,
		"BOOK", "0",
		 0)
	
		Entry[1071] = new Element(
		1071, "assets/thumb/tn_ujackflag.jpg",
		200, 150,
		"FLAG-53", "Large Flags",
		"5&rsquo; x 3&rsquo; Flags", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "71",
		"Country;Afghanistan@", "pd628939698.htm",
		"", 1,
		"FLAG", "0",
		 0)
	
		Entry[1072] = new Element(
		1072, "assets/thumb/tn_stgeorgeflag.jpg",
		200, 145,
		"FLAG-32", "Medium Flag",
		"3&rsquo; x 2&rsquo; Flag", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "71",
		"Country;England St. George@", "pd-2060443500.htm",
		"", 1,
		"FLAG", "0",
		 0)
	
		Entry[1073] = new Element(
		1073, "assets/thumb/tn_whistle.jpg",
		200, 150,
		"SIG-SW", "Survival Whistle",
		"Emergency Whistle", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "113",
		"", "pd1832931395.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1074] = new Element(
		1074, "assets/thumb/tn_survivalwhistle.jpg",
		200, 131,
		"SIG-PW", "Perry Whistle",
		"Emergency Whistle", "",
		"1.25", "0.1",
		"1", 1,
		"Pieces", "113",
		"", "pd961633321.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1075] = new Element(
		1075, "assets/images/nopicture.gif",
		55, 38,
		"SIG-STROBE", "Strobe Light",
		"High-Vis Emergency signalling light", "",
		"26.95", "0.4",
		"1", 1,
		"Pieces", "113",
		"", "pd-392551809.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1076] = new Element(
		1076, "assets/thumb/tn_strobe.jpg",
		200, 374,
		"SIG-MSTROBE", "Mountain Survival Strobe",
		"Emergency High-Visibility Strobe light", "",
		"32.95", "0.4",
		"1", 1,
		"Pieces", "113",
		"", "pd-1699944251.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1077] = new Element(
		1077, "assets/thumb/tn_skystreme.jpg",
		200, 150,
		"SIG-SKYST", "Skystreme Survival Marker",
		"Radar reflective personal location marker", "",
		"24.95", "0.5",
		"1", 1,
		"Pieces", "113",
		"", "pd845371169.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1078] = new Element(
		1078, "assets/thumb/tn_mirror1.jpg",
		200, 150,
		"SIG-MIR", "Mayday Signalling Mirror",
		"Signalling Mirror", "",
		"4.5", "0.1",
		"1", 1,
		"Pieces", "113",
		"", "pd736196151.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1079] = new Element(
		1079, "assets/thumb/tn_mirror2.jpg",
		200, 150,
		"SIG-MIRRO", "Survival Mirror",
		"Emergency mirror", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "113",
		"", "pd758399805.htm",
		"", 1,
		"SIG", "0",
		 0)
	
		Entry[1080] = new Element(
		1080, "assets/thumb/tn_weekender.jpg",
		200, 150,
		"WASH-WKNDR", "Weekender Kit",
		"Basic weekender wash kit", "",
		"4.95", "0.2",
		"1", 1,
		"Pieces", "131",
		"", "pd1213478008.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1081] = new Element(
		1081, "assets/images/nopicture.gif",
		55, 38,
		"WASH-VST", "Vit Sec Towels",
		"Lightweight towels", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "131",
		"", "pd1758138214.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1082] = new Element(
		1082, "assets/thumb/tn_microfibretowels.jpg",
		200, 150,
		"WASH-ULMFT", "Ultra Light Micro Fibre Towels",
		"Lightweight towels", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "131",
		"", "pd384916484.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1083] = new Element(
		1083, "assets/thumb/tn_twistrazor.jpg",
		200, 150,
		"WASH-RAZ", "Razor",
		"", "",
		"5.5", "0.1",
		"1", 1,
		"Pieces", "131",
		"", "pd-548064814.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1084] = new Element(
		1084, "assets/thumb/tn_bathroomkit.jpg",
		200, 150,
		"WASH-BROOM", "Bathroom Cabinet",
		"Compact Wash Kit Roll", "",
		"12.95", "0.3",
		"1", 1,
		"Pieces", "131",
		"", "pd-736070576.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1085] = new Element(
		1085, "assets/images/nopicture.gif",
		55, 38,
		"WASH-RMCWKR", "Rangemaster Camo Wash Kit Roll",
		"Wash Kit Roll", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "131",
		"", "pd942519038.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1086] = new Element(
		1086, "assets/thumb/tn_blackhorsewashkit.jpg",
		200, 150,
		"WASH-BHWKR", "Black Horse Camo Wash Kit Roll",
		"Wash Kit Roll", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "131",
		"", "pd933759324.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1087] = new Element(
		1087, "assets/thumb/tn_washkitroll2.jpg",
		200, 150,
		"WASH-WKB", "Rangemaster Hanging Wash Kit bag",
		"Full wash kit", "",
		"16.95", "0.6",
		"1", 1,
		"Pieces", "131",
		"", "pd892206826.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1088] = new Element(
		1088, "assets/images/nopicture.gif",
		55, 38,
		"WASH-HWP", "Black Horse Hanging Wash Pack",
		"Hanging wash kit", "",
		"19.95", "0.5",
		"1", 1,
		"Pieces", "131",
		"Size;Large 27 x 78 cm@", "pd801806772.htm",
		"", 1,
		"WASH", "0",
		 0)
	
		Entry[1089] = new Element(
		1089, "assets/thumb/tn_handcuffpouch.jpg",
		200, 150,
		"CUFF-HOUDINI", "Houdini Handcuff Pouch",
		"Black cordura pouch", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "80",
		"", "pd-1983191205.htm",
		"", 1,
		"CUFF", "0",
		 0)
	
		Entry[1090] = new Element(
		1090, "assets/thumb/tn_cuffpouch.jpg",
		200, 150,
		"CUFF-OPHP", "Open Handcuff Pouch",
		"Leather pouch", "",
		"15.5", "0.2",
		"1", 1,
		"Pieces", "80",
		"", "pd-699455231.htm",
		"", 1,
		"CUFF", "0",
		 0)
	
		Entry[1091] = new Element(
		1091, "assets/thumb/tn_legcuffs.jpg",
		200, 150,
		"CUFF-LEG", "Legcuffs",
		"Nickel plated leg cuffs", "",
		"23.95", "0.4",
		"1", 1,
		"Pieces", "80",
		"", "pd840768279.htm",
		"", 1,
		"CUFF", "0",
		 0)
	
		Entry[1092] = new Element(
		1092, "assets/thumb/tn_steelcuffs.jpg",
		200, 150,
		"CUFF-CUFF", "Handcuffs",
		"Standard handcuffs", "",
		"7.5", "0.2",
		"1", 1,
		"Pieces", "80",
		"Color;Black@", "pd-72976647.htm",
		"", 1,
		"CUFF", "0",
		 0)
	
		Entry[1093] = new Element(
		1093, "assets/thumb/tn_hdcuffsb.jpg",
		200, 150,
		"CUFF-HDCUFF", "Heavy Duty Handcuffs",
		"Quality cuffs", "",
		"14.5", "0.2",
		"1", 1,
		"Pieces", "80",
		"", "pd-719980081.htm",
		"", 1,
		"CUFF", "0",
		 0)
	
		Entry[1094] = new Element(
		1094, "assets/thumb/tn_grenadiercase.jpg",
		200, 172,
		"RIFCAS-GREN", "Grenadier Rifle Case",
		"Padded rifle case", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "106",
		"Length;Carbine version 46 x 10.5 inch@", "pd-1377685683.htm",
		"", 1,
		"RIFCAS", "0",
		 0)
	
		Entry[1095] = new Element(
		1095, "assets/thumb/tn_militaryriflecase.jpg",
		200, 150,
		"RIFCAS-TMRC", "Military Rifle Case",
		"DPM rifle case", "",
		"21.95", "0.5",
		"1", 1,
		"Pieces", "106",
		"", "pd66271811.htm",
		"", 1,
		"RIFCAS", "0",
		 0)
	
		Entry[1096] = new Element(
		1096, "assets/thumb/tn_tanriflecase.jpg",
		188, 200,
		"RIFCAS-TAN", "Tan rifle case",
		"Budget rifle case", "",
		"24.95", "0.4",
		"1", 1,
		"Pieces", "106",
		"Variant;Fleece Lined@", "pd-837451067.htm",
		"", 1,
		"RIFCAS", "0",
		 0)
	
		Entry[1097] = new Element(
		1097, "assets/thumb/tn_lizardriflecase.jpg",
		200, 182,
		"RIFCAS-LIZ", "Lizard Rifle Case",
		"Budget rifle case", "",
		"13.95", "0.4",
		"1", 1,
		"Pieces", "106",
		"", "pd269326971.htm",
		"", 1,
		"RIFCAS", "0",
		 0)
	
		Entry[1098] = new Element(
		1098, "assets/thumb/tn_rwshardcase.jpg",
		200, 150,
		"RIFCAS-RWS", "RWS Hardcase",
		"Plastic rifle case", "",
		"35", "0.8",
		"1", 1,
		"Pieces", "106",
		"", "pd-1202089695.htm",
		"", 1,
		"RIFCAS", "0",
		 0)
	
		Entry[1099] = new Element(
		1099, "assets/thumb/tn_cleaningkit.jpg",
		200, 150,
		"GCM-APRCK", "Air Pistol/Rifle cleaning kit",
		"Cleaning and Maintenance kit for airguns", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "78",
		"", "pd-1054952532.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1100] = new Element(
		1100, "assets/thumb/tn_siliconeoil2.jpg",
		200, 150,
		"GCM-SGO", "Silicone Gun Oil",
		"", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "78",
		"Variant;130ml Spray Can@", "pd-732987034.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1101] = new Element(
		1101, "assets/thumb/tn_expressgunoil.jpg",
		200, 150,
		"GCM-XP", "Express Gun oil",
		"", "",
		"2.5", "0.4",
		"1", 1,
		"Pieces", "78",
		"", "pd194190852.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1102] = new Element(
		1102, "assets/thumb/tn_siliconecloth.jpg",
		200, 150,
		"GCM-SLCO", "Silicone Cloth",
		"", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "78",
		"", "pd-577453102.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1103] = new Element(
		1103, "assets/thumb/tn_gunlube.jpg",
		200, 150,
		"GCM-LUBE", "Gun Lubricant",
		"", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "78",
		"", "pd-1032694192.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1104] = new Element(
		1104, "assets/thumb/tn_gungrease.jpg",
		200, 150,
		"GCM-GG", "Gun Grease",
		"", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "78",
		"", "pd605709566.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1105] = new Element(
		1105, "assets/thumb/tn_gunblue.jpg",
		200, 150,
		"GCM-GB", "Gun Blue",
		"", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "78",
		"", "pd2079066972.htm",
		"", 1,
		"GCM", "0",
		 0)
	
		Entry[1106] = new Element(
		1106, "assets/images/nopicture.gif",
		55, 38,
		"GCM-GB-1", "Gun Blue",
		"", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd-1931882262.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1107] = new Element(
		1107, "assets/images/nopicture.gif",
		55, 38,
		"GCM-GG-1", "Gun Grease",
		"", "",
		"2.95", "0.2",
		"1", 1,
		"Pieces", "6",
		"", "pd-1178105560.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1108] = new Element(
		1108, "assets/images/nopicture.gif",
		55, 38,
		"GCM-LUBE-1", "Gun Lubricant",
		"", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "6",
		"", "pd1587229590.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1109] = new Element(
		1109, "assets/images/nopicture.gif",
		55, 38,
		"GCM-SLCO-1", "Silicone Cloth",
		"", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "6",
		"", "pd1463344052.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1110] = new Element(
		1110, "assets/images/nopicture.gif",
		55, 38,
		"GCM-APRCK-1", "Air Pistol/Rifle cleaning kit",
		"Cleaning and Maintenance kit for airguns", "",
		"13.95", "0.5",
		"1", 1,
		"Pieces", "6",
		"", "pd-1302234878.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1111] = new Element(
		1111, "assets/images/nopicture.gif",
		55, 38,
		"GCM-SGO", "Silicone Gun Oil",
		"", "",
		"5.95", "0.2",
		"1", 1,
		"Pieces", "6",
		"Variant;130ml Spray Can@", "pd-1624453376.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1112] = new Element(
		1112, "assets/images/nopicture.gif",
		55, 38,
		"GCM-XP-1", "Express Gun oil",
		"", "",
		"2.5", "0.4",
		"1", 1,
		"Pieces", "6",
		"", "pd-1084952820.htm",
		"", 1,
		"AAS", "0",
		 0)
	
		Entry[1113] = new Element(
		1113, "assets/thumb/tn_dtchbivi.jpg",
		199, 348,
		"BIVI-DUTCH", "Dutch Army Gortex bivi bag",
		"Breathable waterproof bivi", "",
		"59.95", "1.1",
		"1", 1,
		"Pieces", "33",
		"", "pd-1680150279.htm",
		"", 1,
		"BIVI", "0",
		 0)
	
		Entry[1114] = new Element(
		1114, "assets/images/nopicture.gif",
		55, 38,
		"BIVI-MIL", "Military Bivi Tent",
		"Lightweight canvas tent", "",
		"19.95", "3",
		"1", 1,
		"Pieces", "33",
		"", "pd1963393999.htm",
		"", 1,
		"BIVI", "0",
		 0)
	
		Entry[1115] = new Element(
		1115, "assets/thumb/tn_trekkingbivi.jpg",
		200, 150,
		"BIVI-TRK", "Trekking Bivi",
		"Breathable bivi bag", "",
		"49.95", "2",
		"1", 1,
		"Pieces", "33",
		"Model;22@", "pd1046765244.htm",
		"", 1,
		"BIVI", "0",
		 0)
	
		Entry[1116] = new Element(
		1116, "assets/thumb/tn_hdbasha.jpg",
		200, 150,
		"BASHA-HDOB", "Heavy Duty Outback Basha",
		"Hard-wearing basha", "",
		"34.95", "0.85",
		"1", 1,
		"Pieces", "28",
		"", "pd-1524064253.htm",
		"", 1,
		"BASHA", "0",
		 0)
	
		Entry[1117] = new Element(
		1117, "assets/thumb/tn_lwbasha.jpg",
		200, 150,
		"BASHA-LWOB", "Lightweight Outback Basha",
		"Lightweight basha", "",
		"34.95", "0.6",
		"1", 1,
		"Pieces", "28",
		"Color;DPM Camouflage@", "pd2105094633.htm",
		"", 1,
		"BASHA", "0",
		 0)
	
		Entry[1118] = new Element(
		1118, "assets/thumb/tn_bigbasha2000.jpg",
		192, 200,
		"BASHA-BB2K", "Big Basha 2000",
		"Quality Basha", "",
		"49.95", "0.7",
		"1", 1,
		"Pieces", "28",
		"", "pd904632965.htm",
		"", 1,
		"BASHA", "0",
		 0)
	
		Entry[1119] = new Element(
		1119, "assets/images/nopicture.gif",
		55, 38,
		"BASHA-MOD", "M.O.D Basha",
		"Genuine issue Basha", "",
		"29.95", "0.7",
		"1", 1,
		"Pieces", "28",
		"", "pd1811445819.htm",
		"", 1,
		"BASHA", "0",
		 0)
	
		Entry[1120] = new Element(
		1120, "assets/thumb/tn_newaeg0008.jpg",
		200, 107,
		"AEG-TM-MP5RAS", "Tokyo Marui H&amp;K MP5 R.A.S",
		"H&amp;K MP5 R.A.S electric airsoft rifle", "",
		"295", "3",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1057061372.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[1121] = new Element(
		1121, "assets/thumb/tn_newaeg0010.jpg",
		200, 92,
		"AEG-TM-M733", "Tokyo Marui Colt M733",
		"Colt M733 electric airsoft rifle", "",
		"255", "2.9",
		"1", 1,
		"Pieces", "10",
		"Options;None@", "pd1057062758.htm",
		"", 1,
		"AEG", "0",
		 0)
	
		Entry[1122] = new Element(
		1122, "assets/thumb/tn_airbourne4.jpg",
		200, 182,
		"WW2-AMBAD", "American Airborne Badges",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Regiment;101st Airborne@", "pd297872351.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1123] = new Element(
		1123, "assets/images/nopicture.gif",
		55, 38,
		"WW2-PURP-1", "American Purple Heart",
		"", "",
		"25", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd199282651.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1124] = new Element(
		1124, "assets/images/nopicture.gif",
		55, 38,
		"WW2-VIC-1", "British Victoria Cross",
		"", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-2090252927.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1125] = new Element(
		1125, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-GAAB-1", "German Army General Assault Badge",
		"", "",
		"5.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1344703383.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1126] = new Element(
		1126, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-ASSC-1", "German Assault Clasp",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1099487133.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1127] = new Element(
		1127, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-DUCB-1", "German Dress Uniform Collar boards",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-50683015.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1128] = new Element(
		1128, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-KCC-1", "German Knights Cross with Cross Swords and Oak Leaves",
		"", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd593741077.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1129] = new Element(
		1129, "assets/thumb/tn_ger0011.jpg",
		200, 95,
		"WW2-BKS", "German Military Passes and Pay books",
		"", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Book;General Military Pass@", "pd357885259.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1130] = new Element(
		1130, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-PAB-1", "German Panzer Assault badge",
		"", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1763886707.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1131] = new Element(
		1131, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-SSSCP-1", "German Set of SS collar patches and arm eagle",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd260460163.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1132] = new Element(
		1132, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-WW1-1", "German WW1 Anti-Partisan combat badge",
		"", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-260537239.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1133] = new Element(
		1133, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-SBCL-1", "German Shoulder boards",
		"", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1357808831.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1134] = new Element(
		1134, "assets/thumb/tn_destabs.jpg",
		200, 152,
		"DES-EPP", "British 2-tone Desert Rank Epaulettes (pair)",
		"", "",
		"7.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Rank;Lance Corporal@", "pd-1483139835.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1135] = new Element(
		1135, "assets/thumb/tn_cprltabs.jpg",
		200, 174,
		"BAD-NCODPMRAN", "Non Commissioned Officers Rank slides",
		"NCO rank slides in DPM camouflage", "",
		"8.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Rank;Corporal@", "pd1154206511.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1136] = new Element(
		1136, "assets/thumb/tn_sgttabsjpg.jpg",
		200, 165,
		"BAD-NCODORAN", "Non Commissioned Officers Rank slides",
		"NCO rank slides in Olive Green", "",
		"8.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Rank;Corporal@", "pd204701941.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1137] = new Element(
		1137, "assets/thumb/tn_ogsgttabs.jpg",
		200, 138,
		"BAD-NCORTB", "Non Commissioned Officer rank tabs",
		"Subdued slides for epaulettes", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Rank;Corporal@", "pd267008104.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1138] = new Element(
		1138, "assets/thumb/tn_lancecorp.jpg",
		200, 200,
		"BAD-NCOHELMT", "Non Commissioned Officers Helmet rank tabs",
		"NCO helmet rank slides", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Color;DPM Camouflage@Rank;Corporal@", "pd-2087344576.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1139] = new Element(
		1139, "assets/thumb/tn_sasflash.jpg",
		200, 115,
		"BAD-SASS", "SAS Shoulder title",
		"Cloth shoulder titles", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1172305518.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1140] = new Element(
		1140, "assets/thumb/tn_paraflash.jpg",
		200, 101,
		"BAD-PARAS", "Parachute Regiment Shoulder title",
		"Cloth shoulder titles", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1619805620.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1141] = new Element(
		1141, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SBS", "SBS Shoulder titles",
		"Cloth shoulder titles", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1211554138.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1142] = new Element(
		1142, "assets/thumb/tn_rmcflash.jpg",
		200, 102,
		"BAD-RMC", "Royal Marines Commando Shoulder title",
		"Cloth shoulder titles", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-491813096.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1143] = new Element(
		1143, "assets/thumb/tn_comdagger.jpg",
		200, 172,
		"BAD-CDAGG", "Marines Commando Dagger",
		"Commando Dagger Cloth patch", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd816653062.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1144] = new Element(
		1144, "assets/thumb/tn_sassub.jpg",
		200, 213,
		"BAD-SASCBB", "SAS subdued beret badge",
		"Subdued cloth beret badge", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1067194532.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1145] = new Element(
		1145, "assets/thumb/tn_sasbadge.jpg",
		200, 162,
		"BAD-SASCBBWDW", "SAS &rsquo;Who Dares Wins&rsquo; Beret Badge",
		"Cloth beret badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1602437262.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1146] = new Element(
		1146, "assets/thumb/tn_eeerre.jpg",
		200, 122,
		"BAD-SASPARA", "SAS Para Wings",
		"Cloth wings patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1070253328.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1147] = new Element(
		1147, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SASMB", "SAS Metal cap badge",
		"Bronze SAS winged dagger cap badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1672895134.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1148] = new Element(
		1148, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SASMBB", "SAS Metal cap badge",
		"Blackened SAS winged dagger cap badge", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-668239364.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1149] = new Element(
		1149, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SASMBB-1", "SAS Officers metal cap badge",
		"Silver gilt and burnished SAS winged dagger cap badge", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1037213558.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1150] = new Element(
		1150, "assets/thumb/tn_raf.jpg",
		200, 143,
		"BAD-PARAW", "Para Wings",
		"Cloth badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1336943048.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1151] = new Element(
		1151, "assets/thumb/tn_para1.jpg",
		200, 127,
		"BAD-ARMYP", "Army Paratroopers wings",
		"Cloth subdued badge", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd388234550.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1152] = new Element(
		1152, "assets/thumb/tn_para.jpg",
		200, 138,
		"BAD-PARAW-1", "Para Wings",
		"Subdued Cloth badge", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-754893228.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1153] = new Element(
		1153, "assets/images/nopicture.gif",
		55, 38,
		"BAD-PARAKC", "Parachute Regiment Kings Crown cap badge",
		"Paras metal cap badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1682498398.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1154] = new Element(
		1154, "assets/thumb/tn_parawingsblaser.jpg",
		200, 133,
		"BAD-REGT", "Regimental Embroidered Blazer badges",
		"", "",
		"16.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Regiment;SAS@", "pd-161019784.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1155] = new Element(
		1155, "assets/thumb/tn_ratty.jpg",
		200, 160,
		"BAD-DESRAT", "Desert Rats cloth patch",
		"Cloth badge", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Color;Black on Sand@", "pd-2131638192.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1156] = new Element(
		1156, "assets/thumb/tn_uj.jpg",
		200, 142,
		"BAD-MUJ", "Mini Union Jack",
		"Cloth badge", "",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd808396542.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1157] = new Element(
		1157, "assets/thumb/tn_uj4.jpg",
		200, 125,
		"BAD-UJ", "Union Jack cloth patches",
		"Cloth badges", "",
		"7.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;10 inch x 6 inch@", "pd-676186730.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1158] = new Element(
		1158, "assets/thumb/tn_ujsub.jpg",
		200, 119,
		"BAD-UJSD", "Union Jack Subdued patch",
		"Subdued Cloth badge", "",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-605049420.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1159] = new Element(
		1159, "assets/thumb/tn_usa.jpg",
		200, 49,
		"BAD-USAF", "U.S Air Force cloth strip",
		"USAF cloth badge", "",
		"0.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Color;Black on olive@", "pd674729774.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1160] = new Element(
		1160, "assets/thumb/tn_usarmyid.jpg",
		200, 103,
		"BAD-USARMY", "U.S Army Cloth strip",
		"Cloth chest patch", "",
		"0.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Color;Black on olive@", "pd-1742663275.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1161] = new Element(
		1161, "assets/images/nopicture.gif",
		55, 38,
		"BAD-USMC", "U.S Marines Cloth strip",
		"Cloth chest patch", "",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1517618635.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1162] = new Element(
		1162, "assets/thumb/tn_yellowthing.jpg",
		200, 209,
		"BAD-1CAV", "1st Cavalry Division badge",
		"Cloth shoulder patch", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1154908025.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1163] = new Element(
		1163, "assets/thumb/tn_starstripes.jpg",
		200, 167,
		"BAD-SADS", "Stars and Stripes cloth patches",
		"U.S flag cloth patches", "",
		"1.5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;2 inch x 3 inch@", "pd1575847304.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1164] = new Element(
		1164, "assets/thumb/tn_deathhead.jpg",
		200, 209,
		"BAD-DEACAR", "Death Card Cloth patch",
		"Cloth Shoulder patch", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-277412106.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1165] = new Element(
		1165, "assets/thumb/tn_deathhead2.jpg",
		200, 203,
		"BAD-MF", "M.F Mike Force Cloth patch",
		"Vietnam Shoulder Cloth Patch", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd54156820.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1166] = new Element(
		1166, "assets/thumb/tn_someyankthing.jpg",
		200, 127,
		"BAD-USNSW", "U.S Navy SEALS wings",
		"Cloth shoulder patch", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"Color;Olive Green@", "pd1040070496.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1167] = new Element(
		1167, "assets/images/nopicture.gif",
		55, 38,
		"BAD-MARPAR", "Marine Paratroopers metal beret badge",
		"Foreign Legion metal beret badge", "",
		"8.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-902075250.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1168] = new Element(
		1168, "assets/thumb/tn_aaded.jpg",
		200, 164,
		"BAD-METROPA", "Metro Paratroopers Subdued cloth badge",
		"Foreign Legion cloth patch", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd384867692.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1169] = new Element(
		1169, "assets/thumb/tn_rep.jpg",
		200, 231,
		"BAD-2REP", "2nd Foreign Legion Paratroopers insignia",
		"Subdued 2REP cloth patch", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd281473402.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1170] = new Element(
		1170, "assets/thumb/para2tn.jpg",
		200, 129,
		"BAD-PARAKC-1", "Parachute Regiment Kings Crown cap badge",
		"Paras metal cap badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "82",
		"", "pd-1081735719.htm",
		"", 1,
		"CAPB", "0",
		 0)
	
		Entry[1171] = new Element(
		1171, "assets/thumb/sas4tn.jpg",
		200, 165,
		"BAD-SASMBB-2", "SAS Metal cap badge",
		"Blackened SAS winged dagger cap badge", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "82",
		"", "pd-1262509137.htm",
		"", 1,
		"CAPB", "0",
		 0)
	
		Entry[1172] = new Element(
		1172, "assets/thumb/sastn.jpg",
		200, 139,
		"BAD-SASMB-1", "SAS Metal cap badge",
		"Bronze SAS winged dagger cap badge", "",
		"2.95", "0.1",
		"1", 1,
		"Pieces", "82",
		"", "pd-1004728971.htm",
		"", 1,
		"CAPB", "0",
		 0)
	
		Entry[1173] = new Element(
		1173, "assets/thumb/saswingstn.jpg",
		200, 153,
		"BAD-SASMBB-1-1", "SAS Officers metal cap badge",
		"Silver gilt and burnished SAS winged dagger cap badge", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "82",
		"", "pd-1801132885.htm",
		"", 1,
		"CAPB", "0",
		 0)
	
		Entry[1174] = new Element(
		1174, "assets/images/nopicture.gif",
		55, 38,
		"WW2-PURP-1-1", "American Purple Heart",
		"", "",
		"25", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd-1186916162.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1175] = new Element(
		1175, "assets/images/nopicture.gif",
		55, 38,
		"WW2-VIC-1-1", "British Victoria Cross",
		"", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd1082713372.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1176] = new Element(
		1176, "assets/thumb/tn_ger0013.jpg",
		200, 171,
		"WW2-KCC-1-1", "German Knights Cross with Cross Swords and Oak Leaves",
		"", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd2142322858.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1177] = new Element(
		1177, "assets/images/nopicture.gif",
		55, 38,
		"MED-KUW", "Kuwait Campaign Medal",
		"Gulf War Campaign Medal", "",
		"12.95", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd-1426882840.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1178] = new Element(
		1178, "assets/images/nopicture.gif",
		55, 38,
		"MED-BRZSTR", "Bronze Star",
		"WW2 Achievement Award", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd1971789654.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1179] = new Element(
		1179, "assets/images/nopicture.gif",
		55, 38,
		"MED-SVRSTR", "Silver Star",
		"WW2 Achievement Award", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "90",
		"", "pd2029890932.htm",
		"", 1,
		"MED", "0",
		 0)
	
		Entry[1180] = new Element(
		1180, "assets/images/nopicture.gif",
		55, 38,
		"MED-SVRSTR-1", "Silver Star",
		"WW2 Achievement Award", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd1065459906.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[1181] = new Element(
		1181, "assets/images/nopicture.gif",
		55, 38,
		"MED-BRZSTR-1", "Bronze Star",
		"WW2 Achievement Award", "",
		"15", "0.1",
		"1", 1,
		"Pieces", "139",
		"", "pd-676315968.htm",
		"", 1,
		"WW2BAD", "0",
		 0)
	
		Entry[1182] = new Element(
		1182, "assets/thumb/tn_newgbb0016.jpg",
		200, 147,
		"GBB-MZ-UZI", "Maruzen Micro Uzi",
		"Type U I.M.I Micro Uzi", "",
		"159.95", "0.7",
		"1", 1,
		"Pieces", "13",
		"", "pd1057572914.htm",
		"", 1,
		"AGB", "0",
		 0)
	
		Entry[1183] = new Element(
		1183, "assets/thumb/tn_colweathparka.jpg",
		199, 238,
		"COL-COL", "Cold Weather Parka",
		"British Army Parka", "",
		"49.95", "3",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-100557839.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1184] = new Element(
		1184, "assets/thumb/tn_s95fleece.jpg",
		198, 190,
		"COL-OGFL-1", "Soldier 95  Fleece jacket",
		"DPM camo fleece", "",
		"49.95", "1.5",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-1296500460.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1185] = new Element(
		1185, "assets/thumb/tn_94smok.jpg",
		199, 190,
		"JAC-94SM", "94 Pattern smock",
		"Previous issue Army jacket", "",
		"35", "1.6",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-174249247.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1186] = new Element(
		1186, "assets/thumb/tn_arkwat.jpg",
		199, 225,
		"JAC-ARKWAT", "Arktis Waterproof SAS smock",
		"100% waterproof smock", "",
		"169.95", "2",
		"1", 1,
		"Pieces", "41",
		"Size;L@Color;AUSCAM@", "pd-640989837.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1187] = new Element(
		1187, "assets/thumb/tn_arkwind.jpg",
		199, 204,
		"JAC-ARKWIN", "Arktis Windproof SAS smock",
		"Breathable smock", "",
		"109.95", "2",
		"1", 1,
		"Pieces", "41",
		"Size;L@Color;AUSCAM@", "pd-1068749537.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1188] = new Element(
		1188, "assets/thumb/tn_arcticsmock.jpg",
		199, 212,
		"JAC-ARC", "Arctic Smock",
		"Windproof DPM jacket", "",
		"99.95", "1.4",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-1794946421.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1189] = new Element(
		1189, "assets/thumb/tn_jacket (13).jpg",
		114, 150,
		"JAC-PARFL", "Flecktarn Parka",
		"German Army Parka", "",
		"24.95", "2",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-808561796.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1190] = new Element(
		1190, "assets/thumb/tn_origsmock.jpg",
		199, 160,
		"JAC-ORIGCOM", "Original Issue Smock",
		"DPM Combat smock", "",
		"35", "2",
		"1", 1,
		"Pieces", "41",
		"Size;34 inch chest@Condition;Brand New@", "pd-893414487.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1191] = new Element(
		1191, "assets/thumb/tn_parasmock.jpg",
		199, 197,
		"JAC-PARA", "Para Smock",
		"Genuine issue para smock", "",
		"69.95", "1.6",
		"1", 1,
		"Pieces", "41",
		"Size;L@Condition;Brand New@", "pd-24764263.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1192] = new Element(
		1192, "assets/images/nopicture.gif",
		55, 38,
		"JAC-SASUG", "SAS Smock Grade 1",
		"Used grade Windproof Jacket", "",
		"49.95", "1.3",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-1162225263.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1193] = new Element(
		1193, "assets/thumb/tn_m65gen.jpg",
		199, 204,
		"JAC-M65G", "U.S M65 Combat Jacket",
		"Genuine U.S issue smock", "",
		"85", "2",
		"1", 1,
		"Pieces", "41",
		"Size;L@Color;Black@", "pd-1401952150.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1194] = new Element(
		1194, "assets/thumb/tn_jacket (1).jpg",
		178, 150,
		"JAC-S95", "Soldier 95 jacket",
		"Current issue smock", "",
		"59.95", "1.5",
		"1", 1,
		"Pieces", "41",
		"Size;L@Condition;Brand New@", "pd-1716346652.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1195] = new Element(
		1195, "assets/thumb/tn_sassmock.jpg",
		199, 228,
		"JAC-SAS", "SAS Smock",
		"Windproof DPM jacket", "",
		"99.95", "1.4",
		"1", 1,
		"Pieces", "41",
		"Size;L@Color;Black@", "pd554715708.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1196] = new Element(
		1196, "assets/thumb/tn_m65.jpg",
		198, 184,
		"JAC-M65R", "U.S M65 Combat Jacket",
		"Reproduction U.S issue smock", "",
		"45", "2",
		"1", 1,
		"Pieces", "41",
		"Size;L@Color;Black@", "pd979719828.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1197] = new Element(
		1197, "assets/thumb/tn_jacket.jpg",
		158, 150,
		"JAC-VENT", "Ventile smock",
		"Original ventile smock!!!", "",
		"119.95", "1.9",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-1806623446.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1198] = new Element(
		1198, "assets/thumb/tn_jacket (4).jpg",
		191, 150,
		"DES-JAC", "British 2-tone Desert Jacket",
		"", "",
		"12.95", "0.6",
		"1", 1,
		"Pieces", "41",
		"Size;L@Length;Long@", "pd251768991.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1199] = new Element(
		1199, "assets/thumb/tn_tropsht.jpg",
		199, 142,
		"SHIRT-TROP", "British Tropical Shirt",
		"DPM Tropical shirt", "",
		"29.5", "0.4",
		"1", 1,
		"Pieces", "41",
		"Size;34 inch chest@", "pd936077399.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1200] = new Element(
		1200, "assets/thumb/tn_95sht.jpg",
		198, 160,
		"SHIRT-S95", "Soldier &rsquo;95 shirt",
		"British Army issue DPM shirt", "",
		"29.95", "0.8",
		"1", 1,
		"Pieces", "41",
		"Size;L@", "pd-1460420700.htm",
		"", 1,
		"CAMJAK", "0",
		 0)
	
		Entry[1201] = new Element(
		1201, "assets/thumb/tn_bdutrs.jpg",
		199, 247,
		"TRS-BDU", "BDU Trousers",
		"American issue trousers", "",
		"34.95", "0.8",
		"1", 1,
		"Pieces", "42",
		"Size;L@Color;Black@Leg Length;Long@", "pd542696647.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1202] = new Element(
		1202, "assets/thumb/tn_94trs.jpg",
		199, 264,
		"TRS-94", "94 pattern trousers",
		"Temperate DPM trousers", "",
		"25", "1",
		"1", 1,
		"Pieces", "42",
		"Size;28 inch waist@Length;Long@", "pd1883626405.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1203] = new Element(
		1203, "assets/thumb/tn_trousers.jpg",
		200, 150,
		"TRS-SPICE", "&quot;Spice&quot; Camo",
		"Coloured camouflage trousers", "",
		"19.95", "0.8",
		"1", 1,
		"Pieces", "42",
		"Size;L@Color;Orange@", "pd723417020.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1204] = new Element(
		1204, "assets/thumb/tn_trousers (3).jpg",
		98, 150,
		"DES-TRO", "British 2-tone Desert Trousers",
		"", "",
		"12.95", "0.5",
		"1", 1,
		"Pieces", "42",
		"Size;M@Leg Length;Long@", "pd528352571.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1205] = new Element(
		1205, "assets/thumb/tn_fleckytrs.jpg",
		199, 277,
		"TRS-FLKTRN", "Flecktarn Trousers",
		"German Army issue trousers", "",
		"12.95", "0.7",
		"1", 1,
		"Pieces", "42",
		"Size;28 inch waist@", "pd4070515.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1206] = new Element(
		1206, "assets/thumb/tn_95trs.jpg",
		199, 242,
		"TRS-S95", "Soldier 95 trousers",
		"Current issue British Army trousers", "",
		"29.95", "1",
		"1", 1,
		"Pieces", "42",
		"Size;28 inch waist@Length;Long@", "pd-372096622.htm",
		"", 1,
		"CAMTRS", "0",
		 0)
	
		Entry[1207] = new Element(
		1207, "assets/thumb/tn_adventure.jpg",
		199, 145,
		"SLP-ADV", "Adventurer Combat Sleeping Bags",
		"Military style sleeping bags", "",
		"29.95", "1.45",
		"1", 1,
		"Pieces", "48",
		"Variant;Adventurer 1@", "pd-1493129360.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1208] = new Element(
		1208, "assets/thumb/tn_antarctica.jpg",
		199, 154,
		"SLP-A2-3", "Antarctica 2",
		"Snugpak sleeping bag", "",
		"135", "2.5",
		"1", 1,
		"Pieces", "48",
		"", "pd2037034620.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1209] = new Element(
		1209, "assets/thumb/tn_compression.jpg",
		199, 159,
		"SLP-BAC-1", "British Army Compression bag",
		"Current issue sleeping bag", "",
		"69.95", "3.5",
		"1", 1,
		"Pieces", "48",
		"", "pd-633231094.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1210] = new Element(
		1210, "assets/thumb/tn_superbag.jpg",
		198, 173,
		"SLP-SPRBAG", "Buffalo Superbag",
		"Extremely High quality Sleeping Bag", "",
		"179.95", "1.8",
		"1", 1,
		"Pieces", "48",
		"Size;L@", "pd-1871733176.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1211] = new Element(
		1211, "assets/thumb/tn_58sleeper.jpg",
		199, 140,
		"SLP-58", "Genuine 58 Pattern Sleeper",
		"Old issue Army sleeping bags", "",
		"29.95", "3",
		"1", 1,
		"Pieces", "48",
		"Size;Regular length@", "pd-434797868.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1212] = new Element(
		1212, "assets/thumb/tn_softie10.jpg",
		198, 198,
		"SLP-S10-1", "Softie 10 Harrier",
		"Lightweight Snugpak sleeping bag", "",
		"105", "1.6",
		"1", 1,
		"Pieces", "48",
		"", "pd87762976.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1213] = new Element(
		1213, "assets/thumb/tn_softie12.jpg",
		199, 157,
		"SLP-S12-1", "Softie 12 Osprey",
		"Lightweight Snugpak sleeping bag", "",
		"115", "1.75",
		"1", 1,
		"Pieces", "48",
		"", "pd-2127770802.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1214] = new Element(
		1214, "assets/thumb/tn_softie3.jpg",
		199, 172,
		"SLP-S3-1", "Softie 3 Merlin",
		"Lightweight Snugpak sleeping bag", "",
		"69", "0.75",
		"1", 1,
		"Pieces", "48",
		"", "pd-828106196.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1215] = new Element(
		1215, "assets/thumb/tn_softie6.jpg",
		198, 174,
		"SLP-S6-1", "Softie 6 Kestrel",
		"Lightweight Snugpak sleeping bag", "",
		"85", "1.1",
		"1", 1,
		"Pieces", "48",
		"", "pd834780218.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1216] = new Element(
		1216, "assets/thumb/tn_softie9.jpg",
		199, 144,
		"SLP-S9-1", "Softie 9 Hawk",
		"Lightweight Snugpak sleeping bag", "",
		"95", "1.4",
		"1", 1,
		"Pieces", "48",
		"", "pd113550584.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1217] = new Element(
		1217, "assets/thumb/tn_thermalsleep.jpg",
		198, 143,
		"SLP-SNTHM-2", "Fleece Liner",
		"Snugpack thermal sleeping bag liner", "",
		"39.95", "0.65",
		"1", 1,
		"Pieces", "48",
		"", "pd-354225178.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1218] = new Element(
		1218, "assets/thumb/tn_natomat.jpg",
		198, 62,
		"SLA-SLPMAT-1", "NATO style sleepmat",
		"Forces sleep mat", "",
		"10.95", "0.3",
		"1", 1,
		"Pieces", "48",
		"", "pd-1202858876.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1219] = new Element(
		1219, "assets/thumb/tn_snuggyhdrest.jpg",
		198, 154,
		"SLP-SNUGGY-1", "Snuggy Headrest",
		"Snugpack pillow", "",
		"7.5", "0.4",
		"1", 1,
		"Pieces", "48",
		"", "pd-715628974.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1220] = new Element(
		1220, "assets/thumb/tn_dtchbivi.jpg",
		199, 348,
		"BIVI-DUTCH-1", "Dutch Army Gortex bivi bag",
		"Breathable waterproof bivi", "",
		"59.95", "1.1",
		"1", 1,
		"Pieces", "48",
		"", "pd930706640.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1221] = new Element(
		1221, "assets/thumb/tn_trekkingbivi.jpg",
		200, 150,
		"BIVI-TRK", "Trekking Bivi",
		"Breathable bivi bag", "",
		"49.95", "2",
		"1", 1,
		"Pieces", "48",
		"Model;22@", "pd1235265406.htm",
		"", 1,
		"CPSLP", "0",
		 0)
	
		Entry[1222] = new Element(
		1222, "assets/thumb/tn_mossaway.jpg",
		200, 326,
		"MOS-EX100-1", "Expedition 100",
		"Insect Repellant", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "45",
		"", "pd786250602.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1223] = new Element(
		1223, "assets/thumb/tn_insectrepplent.jpg",
		200, 320,
		"MOS-EX50-1", "Expedition 50",
		"Insect Repellant", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "45",
		"", "pd-128780376.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1224] = new Element(
		1224, "assets/thumb/tn_mossnet.jpg",
		200, 146,
		"MOS-MIC", "Micro Mosquito Net",
		"Small Mossie net", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "45",
		"Variant;Duo Two-Man@", "pd-2139208170.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1225] = new Element(
		1225, "assets/thumb/tn_mossguard1.jpg",
		200, 433,
		"MOS-MOSI-1", "Mosi-Guard",
		"Insect Repellant", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "45",
		"", "pd-424758398.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1226] = new Element(
		1226, "assets/thumb/tn_mossieheadnet.jpg",
		200, 150,
		"MOS-HEADNET-1", "Mosquito Headnet",
		"Mossie headnet", "",
		"3.95", "0.2",
		"1", 1,
		"Pieces", "45",
		"", "pd-1235841664.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1227] = new Element(
		1227, "assets/images/nopicture.gif",
		55, 38,
		"MOS-USJMN", "U.S Jungle Mosquito Net",
		"American Mossie Net", "",
		"13.95", "0.6",
		"1", 1,
		"Pieces", "45",
		"Color;Olive Green@", "pd226504622.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1228] = new Element(
		1228, "assets/thumb/tn_permethrin.jpg",
		200, 150,
		"MOS-PERME-1", "Mosquito Net Protection: Permethrin",
		"Permethrin mossie net impregnator", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "45",
		"", "pd651634330.htm",
		"", 1,
		"CPIS", "0",
		 0)
	
		Entry[1229] = new Element(
		1229, "assets/thumb/tn_dinnerkit2.jpg",
		200, 150,
		"COOK-BKU-1", "Black Knight Uno Cookset",
		"Non stick one man cookset", "",
		"13.95", "0.8",
		"1", 1,
		"Pieces", "44",
		"", "pd-1021918138.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1230] = new Element(
		1230, "assets/thumb/tn_hexyburner.jpg",
		200, 150,
		"COOK-HEXYBURN-1", "Hexamine Portable Cooker",
		"British Army Hexy Burner", "",
		"4.5", "0.4",
		"1", 1,
		"Pieces", "44",
		"", "pd-54813724.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1231] = new Element(
		1231, "assets/thumb/tn_hexyblock.jpg",
		200, 150,
		"COOK-HEXYTAB-1", "Hexamine Fuel Block",
		"Hexamine Fuel tablet pack", "",
		"2.5", "0.2",
		"1", 1,
		"Pieces", "44",
		"", "pd-326306638.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1232] = new Element(
		1232, "assets/thumb/tn_dinnerkit.jpg",
		200, 150,
		"COOK-HOBO-1", "Hobo &rsquo;Lone Wolf&rsquo; Cookset",
		"Three piece cookset", "",
		"12.5", "0.6",
		"1", 1,
		"Pieces", "44",
		"", "pd992834096.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1233] = new Element(
		1233, "assets/thumb/tn_kfsset.jpg",
		200, 150,
		"COOK-KFS-1", "KFS Clip Set",
		"Knife, Fork, Spoon set", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "44",
		"", "pd832463838.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1234] = new Element(
		1234, "assets/thumb/tn_plate.jpg",
		200, 150,
		"COOK-PLATE", "Plastic Plates",
		"Military style olive green plate", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "44",
		"Variant;Deep Plate 8.5 inch diameter@", "pd-242244292.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1235] = new Element(
		1235, "assets/images/nopicture.gif",
		55, 38,
		"COOK-TIT1-1", "Three Piece Titanium Cook set",
		"Titanium Cookware set", "",
		"39.95", "0.7",
		"1", 1,
		"Pieces", "44",
		"", "pd1908900104.htm",
		"", 1,
		"CPCOOK", "0",
		 0)
	
		Entry[1236] = new Element(
		1236, "assets/thumb/tn_hurricanelantern.jpg",
		183, 200,
		"TOR-HURLAN-1", "Hurricane Lantern",
		"", "",
		"8.95", "0.5",
		"1", 1,
		"Pieces", "46",
		"", "pd-1059099018.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1237] = new Element(
		1237, "assets/images/nopicture.gif",
		55, 38,
		"TOR-TGL-1", "Touch Glow Light",
		"", "",
		"3.99", "0.2",
		"1", 1,
		"Pieces", "46",
		"", "pd-1794698860.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1238] = new Element(
		1238, "assets/thumb/tn_fireset.jpg",
		200, 321,
		"FIRE-FFS-1", "Fire Flint &amp; Striker",
		"Fire lighting tools", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "46",
		"", "pd-698998302.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1239] = new Element(
		1239, "assets/thumb/tn_flint.jpg",
		200, 310,
		"FIRE-AWFM-1", "All Weather Flint and Magnesium",
		"Firemaking flint and magnesium", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "46",
		"", "pd1880695520.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1240] = new Element(
		1240, "assets/thumb/tn_cnadle.jpg",
		200, 418,
		"FIRE-LLC-1", "Long-Life Candles",
		"Long lasting candles", "",
		"3.99", "0.3",
		"1", 1,
		"Pieces", "46",
		"", "pd2039366670.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1241] = new Element(
		1241, "assets/thumb/tn_matchlessfireset.jpg",
		200, 150,
		"FIRE-MFS-1", "Matchless Fire Set",
		"Fire lighting kit", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "46",
		"", "pd1148010732.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1242] = new Element(
		1242, "assets/thumb/tn_stormmatches.jpg",
		200, 150,
		"FIRE-SURV", "Survival Matches",
		"Lifeboat matches", "",
		"2.5", "0.1",
		"1", 1,
		"Pieces", "46",
		"Variant;Lifeboat matches in plastic drum@", "pd-1842200326.htm",
		"", 1,
		"CPLF", "0",
		 0)
	
		Entry[1243] = new Element(
		1243, "assets/images/nopicture.gif",
		55, 38,
		"BK-BDG-1", "Budget Boot care kit",
		"Economy boot care pack", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "64",
		"", "pd2127250598.htm",
		"", 1,
		"CARE", "0",
		 0)
	
		Entry[1244] = new Element(
		1244, "assets/thumb/tn_bootkitjpg.jpg",
		200, 149,
		"BK-BLCKH-1", "Blackhorse Boot Care kit",
		"Quality boot care kit", "",
		"12.95", "0.4",
		"1", 1,
		"Pieces", "64",
		"", "pd760845124.htm",
		"", 1,
		"CARE", "0",
		 0)
	
		Entry[1245] = new Element(
		1245, "assets/thumb/tn_dubbin.jpg",
		200, 193,
		"BK-DUBBIN-1", "Dubbin",
		"Leather Wax", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "64",
		"", "pd1982675730.htm",
		"", 1,
		"CARE", "0",
		 0)
	
		Entry[1246] = new Element(
		1246, "assets/images/nopicture.gif",
		55, 38,
		"BK-WAT-1", " G-Sport Waterproof spray",
		"Waterproofing spray", "",
		"4.95", "0.4",
		"1", 1,
		"Pieces", "64",
		"", "pd-1611358320.htm",
		"", 1,
		"CARE", "0",
		 0)
	
		Entry[1247] = new Element(
		1247, "assets/images/nopicture.gif",
		55, 38,
		"BK-SELV-1", "Selvyt Boot polishing cloth",
		"For polishing boots to a fine shine!", "",
		"5.95", "0.1",
		"1", 1,
		"Pieces", "64",
		"", "pd933417022.htm",
		"", 1,
		"CARE", "0",
		 0)
	
		Entry[1248] = new Element(
		1248, "assets/thumb/tn_g10watchstrap.jpg",
		200, 150,
		"WATCH-G1098", "G.10.98 Watch Strap",
		"Current issue nylon watch strap", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "132",
		"Color;Black@", "pd1571109480.htm",
		"", 1,
		"WATCH", "0",
		 0)
	
		Entry[1249] = new Element(
		1249, "assets/thumb/tn_camowatchstrap.jpg",
		200, 150,
		"WATCH-CMO", "Camo Watch strap plus cover",
		"Velcro fastening protective strap", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "132",
		"Type;DPM Cotton (Quality version)@", "pd-1326104510.htm",
		"", 1,
		"WATCH", "0",
		 0)
	
		Entry[1250] = new Element(
		1250, "assets/thumb/tn_fellsman3.jpg",
		200, 189,
		"BODYW-FM", "Regatta Fellsman III vest",
		"Survival Vest", "",
		"24.95", "0.6",
		"1", 1,
		"Pieces", "36",
		"Size;L@", "pd-1631602743.htm",
		"", 1,
		"BDW", "0",
		 0)
	
		Entry[1251] = new Element(
		1251, "assets/images/nopicture.gif",
		55, 38,
		"BODW-OGSV", "Olive Green Survivor Vest",
		"Survival Vest", "",
		"24.95", "0.6",
		"1", 1,
		"Pieces", "36",
		"Size;L@", "pd-61003112.htm",
		"", 1,
		"BDW", "0",
		 0)
	
		Entry[1252] = new Element(
		1252, "assets/thumb/tn_marinevest.jpg",
		200, 186,
		"BODW-MARINE", "Marine Vest",
		"Bodywarmer", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "36",
		"Size;L@Color;Black@", "pd-1658508106.htm",
		"", 1,
		"BDW", "0",
		 0)
	
		Entry[1253] = new Element(
		1253, "assets/thumb/tn_mltipcktvst.jpg",
		200, 178,
		"BODW-MPSV", "Multi-Pocket Survivor Vest",
		"Survival bodywarmer", "",
		"24.95", "0.8",
		"1", 1,
		"Pieces", "36",
		"Size;L@Color;Urban camo@", "pd-871075540.htm",
		"", 1,
		"BDW", "0",
		 0)
	
		Entry[1254] = new Element(
		1254, "assets/thumb/tn_superflaugepka.jpg",
		155, 200,
		"SUP-PKA", "Superflauge Parka",
		"Invisible Camo Clothing", "",
		"79.95", "1.1",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd-1457087181.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1255] = new Element(
		1255, "assets/images/nopicture.gif",
		55, 38,
		"WYV-SAP", "Wyvern Single Ammo Pouch",
		"Single ammo pouch (holds 3 x SA80 mags)", "",
		"16.5", "0.6",
		"1", 1,
		"Pieces", "102",
		"Color;DPM Camouflage@", "pd1476947484.htm",
		"", 1,
		"WEBPOC", "0",
		 0)
	
		Entry[1256] = new Element(
		1256, "assets/images/nopicture.gif",
		55, 38,
		"PCH-MP", "Multi Pouch",
		"Raven Systems Multi Pouch", "",
		"13.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"Color;Black@", "pd1475089084.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1257] = new Element(
		1257, "assets/images/nopicture.gif",
		55, 38,
		"PCH-TSP", "Twin Stud Pouch",
		"Raven SystemsTwin stud pouch", "",
		"9.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"Color;Black@", "pd1152501384.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1258] = new Element(
		1258, "assets/images/nopicture.gif",
		55, 38,
		"PCH-PUP", "Padded Utility Pouch",
		"Raven Systems Padded Utility Pouch", "",
		"8.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"", "pd1907961846.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1259] = new Element(
		1259, "assets/images/nopicture.gif",
		55, 38,
		"PCH-BHMPP", "Black Horse Mobile Phone Pouch",
		"DPM mobile phone pouch", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "101",
		"", "pd-808669420.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1260] = new Element(
		1260, "assets/images/nopicture.gif",
		55, 38,
		"SUP-PIJ", "Superflauge Poly Insulated Jacket",
		"Invisible Camo Clothing", "",
		"69.95", "0.9",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd-1595526503.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1261] = new Element(
		1261, "assets/thumb/tn_superflaugebomberjkt.jpg",
		200, 139,
		"SUP-SBJ", "Superflauge Shooters Bomber Jacket",
		"Invisible Camo Clothing", "",
		"49.95", "0.8",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd-1782308825.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1262] = new Element(
		1262, "assets/thumb/tn_superflagetrs.jpg",
		156, 200,
		"SUP-SPCTT", "Superflauge Side Pocket Cotton Twill Trousers",
		"Invisible Camo Clothing", "",
		"49.95", "0.4",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd-2085560795.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1263] = new Element(
		1263, "assets/images/nopicture.gif",
		55, 38,
		"SUP-SPG", "Superflauge Polyknit Gloves",
		"Invisible Camo Clothing", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd1778611569.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1264] = new Element(
		1264, "assets/thumb/tn_superflaugeveil.jpg",
		200, 150,
		"SUP-FHN", "Superflauge Full Head Net",
		"Invisible Camo Clothing", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "117",
		"Size;L@", "pd-1247295041.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1265] = new Element(
		1265, "assets/thumb/tn_superflaugecap.jpg",
		200, 150,
		"SUP-CPC", "Superflauge Cotton Peaked Cap",
		"Invisible Camo Clothing", "",
		"10.95", "0.2",
		"1", 1,
		"Pieces", "117",
		"", "pd584098941.htm",
		"", 1,
		"SUP", "0",
		 0)
	
		Entry[1266] = new Element(
		1266, "assets/thumb/tn_superflaugecap.jpg",
		200, 150,
		"SUP-CPC-1", "Superflauge Cotton Peaked Cap",
		"Invisible Camo Clothing", "",
		"10.95", "0.2",
		"1", 1,
		"Pieces", "81",
		"", "pd972836911.htm",
		"", 1,
		"HEAD", "0",
		 0)
	
		Entry[1267] = new Element(
		1267, "assets/images/nopicture.gif",
		55, 38,
		"SUP-SPCTT", "Superflauge Side Pocket Cotton Twill Trousers",
		"Invisible Camo Clothing", "",
		"49.95", "0.4",
		"1", 1,
		"Pieces", "128",
		"Size;L@", "pd179361609.htm",
		"", 1,
		"TRS", "0",
		 0)
	
		Entry[1268] = new Element(
		1268, "assets/thumb/tn_superflaugebomberjkt.jpg",
		200, 139,
		"SUP-SBJ", "Superflauge Shooters Bomber Jacket",
		"Invisible Camo Clothing", "",
		"49.95", "0.8",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd1231561371.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[1269] = new Element(
		1269, "assets/images/nopicture.gif",
		55, 38,
		"SUP-PIJ", "Superflauge Poly Insulated Jacket",
		"Invisible Camo Clothing", "",
		"69.95", "0.9",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd-1130105763.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[1270] = new Element(
		1270, "assets/thumb/tn_superflaugepka.jpg",
		155, 200,
		"SUP-PKA", "Superflauge Parka",
		"Invisible Camo Clothing", "",
		"79.95", "1.1",
		"1", 1,
		"Pieces", "52",
		"Size;L@", "pd2071302415.htm",
		"", 1,
		"THERM", "0",
		 0)
	
		Entry[1271] = new Element(
		1271, "assets/images/nopicture.gif",
		55, 38,
		"SUP-PIJ", "Superflauge Poly Insulated Jacket",
		"Invisible Camo Clothing", "",
		"69.95", "0.9",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd630479153.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[1272] = new Element(
		1272, "assets/thumb/tn_superflaugebomberjkt.jpg",
		200, 139,
		"SUP-SBJ", "Superflauge Shooters Bomber Jacket",
		"Invisible Camo Clothing", "",
		"49.95", "0.8",
		"1", 1,
		"Pieces", "84",
		"Size;L@", "pd-1144329917.htm",
		"", 1,
		"JAC", "0",
		 0)
	
		Entry[1273] = new Element(
		1273, "assets/images/nopicture.gif",
		55, 38,
		"BAD-LENIN", "Embossed Lenin Patch",
		"Russian Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1626654267.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1274] = new Element(
		1274, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SUB", "Soviet Union Battleship patch",
		"Russian Cloth Patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd217459067.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1275] = new Element(
		1275, "assets/images/nopicture.gif",
		55, 38,
		"BAD-TRBOL", "The Red Banner of Labour",
		"Russian Cloth Patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-355420127.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1276] = new Element(
		1276, "assets/thumb/tn_kgb.jpg",
		200, 236,
		"BAD-KGB", "K.G.B Embroidered patch",
		"Russian cloth patch", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-126763209.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1277] = new Element(
		1277, "assets/images/nopicture.gif",
		55, 38,
		"BAD-USSRRA", "U.S.S.R Red Army",
		"Russian metal cap badge", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1631695933.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1278] = new Element(
		1278, "assets/thumb/tn_met2.jpg",
		200, 66,
		"BAD-METPOL", "Metropolitan Police badge",
		"Cloth jacket patches", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;Large 11 x 3 inch@", "pd-1193426449.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1279] = new Element(
		1279, "assets/thumb/tn_police3.jpg",
		200, 68,
		"BAD-POLICE", "Police badge",
		"Cloth jacket patches", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;Large 11 x 3 inch@", "pd-1386654283.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1280] = new Element(
		1280, "assets/thumb/tn_fbi2.jpg",
		200, 58,
		"BAD-FBI", "F.B.I badge",
		"Cloth jacket patches", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;Large 11 x 3 inch@", "pd-1059507289.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1281] = new Element(
		1281, "assets/thumb/tn_swat.jpg",
		200, 114,
		"BAD-SWAT", "SWAT badge",
		"Cloth jacket patches", "",
		"5", "0.1",
		"1", 1,
		"Pieces", "27",
		"Size;Large 11 x 3 inch@", "pd1843385097.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1282] = new Element(
		1282, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SPSHUT", "Space Shuttle",
		"Cloth patch", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1432232027.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1283] = new Element(
		1283, "assets/images/nopicture.gif",
		55, 38,
		"BAD-DADE", "Dade County Police badge",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd2128153089.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1284] = new Element(
		1284, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SHPO", "State Highway Patrol Ohio Police badge",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-836901865.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1285] = new Element(
		1285, "assets/images/nopicture.gif",
		55, 38,
		"BAD-HILLST", "Hill Street Precinct Police badge",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-719199203.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1286] = new Element(
		1286, "assets/images/nopicture.gif",
		55, 38,
		"BAD-VIRSTPO", "Virginia State Police badge",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-1736229997.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1287] = new Element(
		1287, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SHPOL", "State Highway Patrol Ohio Police badge (large)",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-2145290247.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1288] = new Element(
		1288, "assets/images/nopicture.gif",
		55, 38,
		"BAD-SCOLHI", "South Carolina Highway Patrol badge",
		"Cloth patch", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-286465329.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1289] = new Element(
		1289, "assets/images/nopicture.gif",
		55, 38,
		"BAD-USCUFFINSIGSS", "U.S Cuff Insignia - Submarine",
		"Cloth cuff insignia", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd-792403563.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1290] = new Element(
		1290, "assets/images/nopicture.gif",
		55, 38,
		"BAD-USCUFFINSIGSH", "U.S Cuff Insignia - Shark",
		"Cloth cuff insignia", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd1761433035.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1291] = new Element(
		1291, "assets/images/nopicture.gif",
		55, 38,
		"BAD-USCUFFINSIGPB", "U.S Cuff Insignia - Polar Bear",
		"Cloth cuff insignia", "",
		"1.95", "0.1",
		"1", 1,
		"Pieces", "27",
		"", "pd232979697.htm",
		"", 1,
		"BAD", "0",
		 0)
	
		Entry[1292] = new Element(
		1292, "assets/images/nopicture.gif",
		55, 38,
		"STASH-STASH", "Stash Bags Set",
		"Set of 3 x stash bags", "",
		"6.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd1057925083.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1293] = new Element(
		1293, "assets/thumb/tn_compressionstuffsack.jpg",
		200, 150,
		"WAT-95GTT", "95 Pattern Goretex Trousers",
		"Current issue goretex trousers", "",
		"35", "0.1",
		"1", 1,
		"Pieces", "116",
		"No Variants;L@", "pd-1632969343.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1294] = new Element(
		1294, "assets/images/nopicture.gif",
		55, 38,
		"STASH-CPDB", "Compression Dry Bag",
		"Compression storage sack", "",
		"16.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd681698199.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1295] = new Element(
		1295, "assets/thumb/tn_sackcover.jpg",
		200, 150,
		"STASH-WPRSC", "Waterproof Rucksack covers",
		"Bergen covers", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "116",
		"Color;Black@", "pd266812281.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1296] = new Element(
		1296, "assets/thumb/tn_bergencoverdpm.jpg",
		200, 150,
		"STASH-BHDPMBC", "Blackhorse DPM bergen cover",
		"Waterproof bergen cover", "",
		"19.95", "0.2",
		"1", 1,
		"Pieces", "116",
		"", "pd1011241551.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1297] = new Element(
		1297, "assets/thumb/tn_bergencoverdes.jpg",
		200, 179,
		"DES-BGCUK-1", "British 2-tone Desert camo Bergen cover",
		"", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd-624250767.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1298] = new Element(
		1298, "assets/images/nopicture.gif",
		55, 38,
		"STASH-ESS", "Economy Stuff Sacks",
		"Budget stuff sack", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd2120462343.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1299] = new Element(
		1299, "assets/images/nopicture.gif",
		55, 38,
		"STASH-ERK", "Economy Rucksack Liners",
		"Budget rucksack liners", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd976037507.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1300] = new Element(
		1300, "assets/images/nopicture.gif",
		55, 38,
		"STASH-XRDPMCM", "Extra Range DPM camo rucksack liner",
		"Waterproof bergen liner", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "116",
		"", "pd-1814356887.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1301] = new Element(
		1301, "assets/thumb/tn_arktisrivercrossingbag.jpg",
		200, 150,
		"STASH-AWPB", "Arktis Water-Proof Bags",
		"River crossing bags", "",
		"24.95", "0.1",
		"1", 1,
		"Pieces", "116",
		"", "pd1383259327.htm",
		"", 1,
		"STASH", "0",
		 0)
	
		Entry[1302] = new Element(
		1302, "assets/thumb/tn_liquidconditioner.jpg",
		124, 200,
		"NIK-LCSRCW", "Nikwax Liquid Conditioner 125ml",
		"Softens, revives, conditions and waterproofs leather", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1954106220.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1303] = new Element(
		1303, "assets/thumb/tn_fabricandleather.jpg",
		149, 200,
		"NIK-FLWPFW", "Nikwax Fabric &amp; Leather waterproofer 125ml",
		"Waterproofer for Fabric and Leather footwear", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1014452090.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1304] = new Element(
		1304, "assets/thumb/tn_leatherconditioner.jpg",
		91, 200,
		"NIK-CDLCRSW", "Nikwax Conditioner for Leather 125ml",
		"Conditions, revives, softens and waterproofs", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1083796024.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1305] = new Element(
		1305, "assets/thumb/tn_mapproof.jpg",
		119, 200,
		"NIK-MPPF", "Nikwax Map Proof 125ml",
		"Waterproofing for Maps and Paper", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1500658470.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1306] = new Element(
		1306, "assets/thumb/tn_nubuckandsuede.jpg",
		162, 200,
		"NIK-NSWP", "Nikwax Nubuck &amp; Suede waterproofing 125ml",
		"Waterproofs Nubuck &amp; Suede products", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1843621316.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1307] = new Element(
		1307, "assets/thumb/tn_blackaqueouswax.jpg",
		159, 200,
		"NIK-BAW", "Nikwax Black Aqueous Wax 125ml",
		"Tough non-softening colour rejuvenating waterproofer for leather", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd-228288110.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1308] = new Element(
		1308, "assets/thumb/tn_aqueouswax.jpg",
		125, 200,
		"NIK-AW", "Nikwax Aqueous Wax 125ml",
		"Tough non-softening waterproofer for leather", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd421863952.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1309] = new Element(
		1309, "assets/thumb/tn_gloveproof.jpg",
		105, 200,
		"NIK-GP", "Nikwax Glove Proof 125ml",
		"Waterproofing for leather and fabric gloves", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd713103038.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1310] = new Element(
		1310, "assets/thumb/tn_footwearcleaninggoo.jpg",
		114, 200,
		"NIK-FCG", "Nikwax Footwear Cleaning Gel 125ml",
		"Cleans all footwear, leather and fabric", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd704713500.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1311] = new Element(
		1311, "assets/thumb/tn_brownaqueouswax.jpg",
		159, 200,
		"NIK-BAW1", "Nikwax Brown Aqueous Wax 125ml",
		"Tough non-softening colour rejuvenating waterproofer for leather", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd1725767338.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1312] = new Element(
		1312, "assets/thumb/tn_polarproof.jpg",
		120, 200,
		"NIK-PPTX10", "Nikwax TX10 Polar Proof 300ml",
		"Waterproofing for fibre, pile, fleece, wool and synthetic insulated clothing", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd-1883599640.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1313] = new Element(
		1313, "assets/images/nopicture.gif",
		55, 38,
		"NIK-LDW", "Nikwax Loft Down Wash 300ml",
		"Cleans down sleeping bags, garments and comforters", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd-2011374250.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1314] = new Element(
		1314, "assets/thumb/tn_loftechwashsmall.jpg",
		134, 200,
		"NIK-LTW", "Nikwax Loft Tech Wash 300ml",
		"Cleans and maintains all waterproof clothing and equipment", "",
		"3.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd1119984500.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1315] = new Element(
		1315, "assets/thumb/tn_downproof.jpg",
		108, 200,
		"NIK-TX10DP", "Nikwax TX 10 Down Proof 300ml",
		"Wash in waterproofing for all down and feather filled clothing", "",
		"4.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd1994342082.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1316] = new Element(
		1316, "assets/images/nopicture.gif",
		55, 38,
		"NIK-TGP", "Nikwax Tent &amp; Gear Proof 300ml spray",
		"Waterproofing for nylon and synthetic tents, clothing and equipment", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd-687928640.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1317] = new Element(
		1317, "assets/thumb/tn_txdirectspray.jpg",
		136, 200,
		"NIK-TXD", "Nikwax TX Direct 300ml spray",
		"Reproofing for laminated and coated breathable waterproof fabrics", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd-1360400658.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1318] = new Element(
		1318, "assets/thumb/tn_colourwax.jpg",
		159, 200,
		"NIK-CWB", "Nikwax Colour Wax Blue Spray 300ml",
		"Reproofing and colour restore for waxed cotton jackets", "",
		"5.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd719349452.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1319] = new Element(
		1319, "assets/thumb/tn_lofttechwash.jpg",
		123, 200,
		"NIK-LTW-1", "Nikwax Loft Tech Wash 1 litre",
		"Cleans and maintains all waterproof clothing and equipment", "",
		"9.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd890591706.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1320] = new Element(
		1320, "assets/thumb/tn_txdirectwashin.jpg",
		200, 150,
		"NIK-TXD-1", "Nikwax TX Direct 1 litre",
		"Reproofing for laminated and coated breathable waterproof fabrics", "",
		"6.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd2133064600.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1321] = new Element(
		1321, "assets/thumb/tn_tentandgearproofspray.jpg",
		200, 150,
		"NIK-TGP-1", "Nikwax Tent &amp; Gear Proof 1 litre",
		"Waterproofing for nylon and synthetic tents, clothing and equipment", "",
		"10.5", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd603499398.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1322] = new Element(
		1322, "assets/images/nopicture.gif",
		55, 38,
		"NIK-TGP-1-1", "Nikwax Cotton Proof 1 litre",
		"Wash in waterproofing for cotton and polycotton clothing", "",
		"12.95", "0.3",
		"1", 1,
		"Pieces", "65",
		"", "pd56939812.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1323] = new Element(
		1323, "assets/thumb/tn_nikwaxkit.jpg",
		200, 150,
		"NIK-WWL", "Nikwax Waterproofing Wax",
		"Waterproofing Wax for Leather", "",
		"3.95", "0.1",
		"1", 1,
		"Pieces", "65",
		"", "pd-1152004110.htm",
		"", 1,
		"NIK", "0",
		 0)
	
		Entry[1324] = new Element(
		1324, "assets/images/nopicture.gif",
		55, 38,
		"PCH-BHFFD", "Black Horse Field Dressing Pouch",
		"Large FFD pouch", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "101",
		"Color;DPM Camouflage@", "pd1239390304.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1325] = new Element(
		1325, "assets/images/nopicture.gif",
		55, 38,
		"PCH-WAR", "Warden Utility Pouch",
		"DPM Utility Pouch", "",
		"9.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"", "pd1734325646.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1326] = new Element(
		1326, "assets/images/nopicture.gif",
		55, 38,
		"PCH-POL", "Police Document Utility Pouch",
		"Black Utility Pouch", "",
		"9.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"", "pd1571950188.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1327] = new Element(
		1327, "assets/images/nopicture.gif",
		55, 38,
		"PCH-RBCP", "Ringbinder Camo Pouch",
		"DPM ringbinder pouch", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "101",
		"Size;A4 size@", "pd-1778751962.htm",
		"", 1,
		"PCH", "0",
		 0)
	
		Entry[1328] = new Element(
		1328, "assets/images/nopicture.gif",
		55, 38,
		"STAT-SOL", "Black Horse &quot;The Soldier&quot;",
		"Everything you could want in a folder", "",
		"21.95", "0.3",
		"1", 1,
		"Pieces", "100",
		"", "pd418723820.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1329] = new Element(
		1329, "assets/images/nopicture.gif",
		55, 38,
		"STAT-WAT", "Waterproof Notebook and Cover",
		"Waterproof notepad with green cover", "",
		"4.95", "0.1",
		"1", 1,
		"Pieces", "100",
		"", "pd2113343482.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1330] = new Element(
		1330, "assets/images/nopicture.gif",
		55, 38,
		"STAT-CAM", "Commanders Aide Memoire",
		"Black Horse Aide Memoire", "",
		"18.95", "0.2",
		"1", 1,
		"Pieces", "100",
		"", "pd-544137544.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1331] = new Element(
		1331, "assets/images/nopicture.gif",
		55, 38,
		"PCH-RBCP", "Ringbinder Camo Pouch",
		"DPM ringbinder pouch", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "100",
		"Size;A4 size@", "pd-135068762.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1332] = new Element(
		1332, "assets/images/nopicture.gif",
		55, 38,
		"STAT-FOB", "Black Horse Floppy/Order book",
		"A5 folder cover", "",
		"14.95", "0.2",
		"1", 1,
		"Pieces", "100",
		"", "pd1078389266.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1333] = new Element(
		1333, "assets/images/nopicture.gif",
		55, 38,
		"STAT-ORDBK", "Black Horse Order Book",
		"A5 order book", "",
		"9.95", "0.1",
		"1", 1,
		"Pieces", "100",
		"", "pd-1551767920.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1334] = new Element(
		1334, "assets/images/nopicture.gif",
		55, 38,
		"STAT-A6ZWC", "Black Horse A6 zipped waterproof cover",
		"Waterproof notepad cover", "",
		"7.5", "0.2",
		"1", 1,
		"Pieces", "100",
		"", "pd-450007234.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1335] = new Element(
		1335, "assets/images/nopicture.gif",
		55, 38,
		"STAT-A6AWRP", "Black Horse A6 Aquascribe waterproof refill pad",
		"Waterproof notepad refills", "",
		"3.5", "0.1",
		"1", 1,
		"Pieces", "100",
		"", "pd2102861724.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1336] = new Element(
		1336, "assets/images/nopicture.gif",
		55, 38,
		"STAT-RWNC", "Raven Waterproof Notebook Cover",
		"A6 size notebook cover", "",
		"8.95", "0.1",
		"1", 1,
		"Pieces", "100",
		"Color;Black@", "pd812540264.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1337] = new Element(
		1337, "assets/thumb/tn_desertnotebookcover.jpg",
		200, 181,
		"DES-NBK-1", "Desert Notebook cover",
		"", "",
		"8.95", "0.1",
		"1", 1,
		"Pieces", "100",
		"", "pd188138966.htm",
		"", 1,
		"STAT", "0",
		 0)
	
		Entry[1338] = new Element(
		1338, "assets/thumb/tn_desertsassmock.jpg",
		200, 193,
		"JAC-SAS-2", "Desert SAS Smock",
		"Windproof Desert DPM jacket", "",
		"99.95", "1.4",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd1061543763.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[1339] = new Element(
		1339, "assets/images/nopicture.gif",
		55, 38,
		"DES-JAC2000", "British Soldier 2000 Desert shirt",
		"", "",
		"29.95", "0.6",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd1062685351.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[1340] = new Element(
		1340, "assets/images/nopicture.gif",
		55, 38,
		"DES-TROS2000", "British Soldier 2000 Desert Trousers",
		"", "",
		"29.95", "0.5",
		"1", 1,
		"Pieces", "61",
		"Size;30 inch waist@", "pd830716695.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[1341] = new Element(
		1341, "assets/images/nopicture.gif",
		55, 38,
		"JAC-S2000DES", "British Soldier 2000 Desert smock",
		"Current issue smock", "",
		"69.95", "1.5",
		"1", 1,
		"Pieces", "61",
		"Size;L@", "pd1692564683.htm",
		"", 1,
		"DESERT", "0",
		 0)
	
		Entry[1342] = new Element(
		1342, "assets/images/nopicture.gif",
		55, 38,
		"CO-UM-P99", "Umarex Walther CP99",
		"CO2 air pistol", "",
		"99.95", "1",
		"1", 1,
		"Pieces", "0",
		"Finish;Black@", "pd1062848759.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[1343] = new Element(
		1343, "assets/thumb/tn_BAC (2).JPG",
		200, 155,
		"CO-UM-P99N", "Umarex Walther CP99 Nighthawk",
		"CO2 air pistol", "",
		"189.95", "1.3",
		"1", 1,
		"Pieces", "0",
		"Color;Black@", "pd-1632959317.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[1344] = new Element(
		1344, "assets/thumb/tn_BAC (4).JPG",
		200, 135,
		"CO-AN-F1", "Anics Brocock F1",
		"CO2 air pistol", "",
		"139.95", "1",
		"1", 1,
		"Pieces", "0",
		"", "pd1708557596.htm",
		"", 1,
		"AAP", "0",
		 0)
	
		Entry[1345] = new Element(
		1345, "assets/images/nopicture.gif",
		55, 38,
		"BOOT-LC", "Lowa Combat Boot",
		"", "",
		"159.99", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd1433748223.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[1346] = new Element(
		1346, "assets/images/nopicture.gif",
		55, 38,
		"BOOT-LS", "Lowa Seeker Boot",
		"", "",
		"129.99", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd904854853.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[1347] = new Element(
		1347, "assets/images/nopicture.gif",
		55, 38,
		"BOOT-LM", "Lowa Mountain Boot GTX",
		"", "",
		"159.99", "0.9",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd167431825.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[1348] = new Element(
		1348, "assets/images/nopicture.gif",
		55, 38,
		"BOOT-SFGTX", "Special Forces GTX",
		"", "",
		"159.99", "0.7",
		"1", 1,
		"Pieces", "72",
		"Size;10@", "pd-2003439034.htm",
		"", 1,
		"BOOT", "0",
		 0)
	
		Entry[1349] = new Element(
		1349, "assets/images/nopicture.gif",
		55, 38,
		"EYE-SCOTT", "Scott Goggles",
		"", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "66",
		"", "pd1531345380.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[1350] = new Element(
		1350, "assets/images/nopicture.gif",
		55, 38,
		"EYE-SCOTT-1", "Scott Goggles",
		"", "",
		"16.95", "0.2",
		"1", 1,
		"Pieces", "8",
		"", "pd-1278541134.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[1351] = new Element(
		1351, "assets/images/nopicture.gif",
		55, 38,
		"SPR-HQ-AK47", "High-Quality AK47",
		"AK47 spring airsoft rifle", "",
		"109.95", "2",
		"1", 1,
		"Pieces", "21",
		"", "pd-250466256.htm",
		"", 1,
		"ASR", "0",
		 0)
	
		Entry[1352] = new Element(
		1352, "assets/images/nopicture.gif",
		55, 38,
		"EYE-ESSLO", "ESS Land Ops goggles",
		"", "",
		"55", "0.4",
		"1", 1,
		"Pieces", "66",
		"", "pd-1421258274.htm",
		"", 1,
		"EYE", "0",
		 0)
	
		Entry[1353] = new Element(
		1353, "assets/images/nopicture.gif",
		55, 38,
		"EYE-ESSLO-1", "ESS Land Ops goggles",
		"", "",
		"55", "0.4",
		"1", 1,
		"Pieces", "8",
		"", "pd388776764.htm",
		"", 1,
		"EYES", "0",
		 0)
	
		Entry[1354] = new Element(
		1354, "assets/images/nopicture.gif",
		55, 38,
		"AP-CO2-PPK", "Walther PPK",
		"Semi-Automatic CO2 pistol", "",
		"69.95", "0.6",
		"1", 1,
		"Pieces", "0",
		"Slide Colour;Black@", "pd-293495758.htm",
		"", 1,
		"AAP", "0",
		 0)
	
// ** 1109
	function SetupSearchEngineForm(){
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if(mySearchEngine.term!="null") document.SearchEngine.Term.value = mySearchEngine.term;
		for(var i=0;i<document.SearchEngine.Mode.length;i++){
			if(i==mySearchEngine.mode) document.SearchEngine.Mode[i].selected = true;
			};
		if(mySearchEngine.maxPrice>0) document.SearchEngine.Maxprice.value = mySearchEngine.maxPrice;
		else{
			document.SearchEngine.Maxprice.value="";
			mySearchEngine.maxPrice = -1;
			};
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
			for(var i=0;i<document.SearchEngine.navselect.length; i++){
				if(document.SearchEngine.navselect[i].value.split(';;')[2]==mySearchEngine.categoryId){
					xmlConfig.getFirstItem("SearchEngine").categoryIndex = document.SearchEngine.navselect[i].value.split(';;')[0];
					document.SearchEngine.navselect[i].selected = true;
					};
				};
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		};
// enable smartstore to display amount of found products ...
	var counter = 0;
// ** 1111b
	function SearchFor(Term,Mode){
	var foundItems = new Array();
	var itemPrice = 0; var currentCategory = 0;
		mySearchEngine = xmlConfig.getFirstItem("SearchEngine");
		if((Term!="null" && Term!="")||mySearchEngine.maxPrice>=0){
			if(Mode=="") Mode=0;
			Term = Term.toLowerCase();
			var result = "<form name=\"ProductIndex\" onSubmit=\"return false;\">";
			var matchCategory = true;
			var productCategory;
			for(var i=0;i<Entry.length;i++){
				if(xmlConfig.getFirstItem("SearchEngine").ByCategory=="1"){
					// Search for matching categories
					if(xmlConfig.getFirstItem("SearchEngine").categoryIndex!="null"&&xmlConfig.getFirstItem("SearchEngine").categoryIndex!="nada"){
						for(var j=0; j<Entry[i].Category.split(",").length; j++){
							matchCategory = (navigation[mySearchEngine.categoryIndex].categoryId == Entry[i].Category.split(",")[j]) ? true : false;
							if(matchCategory!=true){
								productCategory = getNavElementByCatID(Entry[i].Category.split(",")[j]);
								while(productCategory!=null&&matchCategory==false){
									if(productCategory.parentId!=null){
										if(navigation[productCategory.parentId].categoryId==xmlConfig.getFirstItem("SearchEngine").categoryId){
											currentCategory = Entry[i].Category.split(",")[j];
											matchCategory=true;
											break;
											}
										else productCategory = navigation[productCategory.parentId];
										}
									else{
										currentCategory = Entry[i].Category.split(",")[j];
										productCategory = null;
										};
									};
								}
							else{
								currentCategory = Entry[i].Category.split(",")[j];
								break;
								};
							};
						}
					else{
						currentCategory = Entry[i].Category.split(",")[0];
						matchCategory = true;
						};
					}
				else{
					currentCategory = Entry[i].Category.split(",")[0];
					matchCategory = true;
					};
				// Update current Category
				Entry[i].NavIndex = getNavElementByCatID(currentCategory).id;
				// Continue
				var foundDesc1 = Entry[i].Title.toLowerCase().indexOf(Term)!=-1;
				var foundDesc2 = Entry[i].Subtitle.toLowerCase().indexOf(Term)!=-1;
				var foundProdId = Entry[i].Prod_nr.toLowerCase().indexOf(Term)!=-1;
				var foundManufac = Entry[i].Manufac.toLowerCase().indexOf(Term)!=-1;
				// SearchFor All
				itemPrice = Entry[i].Price
				if(Entry[i].catDiscount!=0&&Entry[i].Discount==""){
					itemPrice = Entry[i].Price * (1 - Entry[i].catDiscount / 100 );
					};
				//
				itemPrice = displPrice(itemPrice, Entry[i].Tax);
				//
				if(Mode==0){
					if((foundDesc1 || foundDesc2 || foundProdId || foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Description
				if(Mode==1){
					if((foundDesc1 || foundDesc2 || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor ProdId
				if(Mode==2){
					if((foundProdId || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				// SearchFor Manufac
				if(Mode==3){
					if((foundManufac || Term=="null" || Term=="")&&chkMaxprice(itemPrice,mySearchEngine.maxPrice)&&matchCategory){
						counter++;
						foundItems[foundItems.length] = Entry[i];
						};
					};
				};
			// found elements: foundItems.length
			for(var i=0; i<foundItems.length;i++){
				result += foundItems[i].Print();
				};
			result += "</form>";
			if(counter>0){
				mySearchEngine.init="false";
				return result;
				}
			else{
				if(mySearchEngine.init=="false")	return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>Sorry, no matching product was found. Please try again...</TD></TR>"
				else return("");
				};
			};
		if(mySearchEngine.init=="false") return "<TR><TD colspan=\"2\" class=\"PROVIEWBODY\" nowrap>You did not enter any search criteria. Please enter your search term.</TD></TR>"
		else return("");
		};
// ** 11112
	function chkMaxprice(aPrice,aMaxPrice){
		aMaxPrice = replace(aMaxPrice.toString(),",",".");
		aPrice = calculateCurrencyAmount(aPrice, objPriCurrency);
		if(parseFloat(aMaxPrice)>0){
			if(parseFloat(aPrice)<=parseFloat(aMaxPrice)) return(true)
			else return(false);
			}
		else return(true);
		};
// ** 1111b
	function displPrice(aPrice,aTaxindex){
		var taxamount = taxarea[xmlConfig.taxarea][parseInt(aTaxindex) + 1];
		if(boolDisplTaxIncl){
			if(boolPriceTaxIncl) return(aPrice)
			else return(aPrice * ( 1 + taxamount/100 ) );
			}
		else{
			if(boolPriceTaxIncl) return(aPrice * ( 1 - taxamount/( 100 + taxamount ) ) )
			else return(aPrice);
			};
		};
// ** 1113
	function callpage(address, defValues, NavIndex){
		xmlConfig.getFirstItem("QueryStringData").putValue(defValues);
		xmlConfig.navIndex = NavIndex.toString();
		safeData();
		location.href = address;
		};
// ** 1114
	function newSearch(){
	var queryString = ""; var site = "";
	var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
		xmlSearchEngine.init='false';
		safeData();
		queryString += "mode=" + xmlSearchEngine.mode
			+ "&term=" + escape(xmlSearchEngine.term)
			+ "&maxPrice=" + escape(xmlSearchEngine.maxPrice)
			+ "&categoryId=" + escape(xmlSearchEngine.categoryIndex);
		if(location.href.indexOf("?")==-1) location.href = "search.htm?" + queryString
		else location.href = location.href.substring(0, location.href.indexOf("?")) + "?" + queryString;
		};
// ** 1115
	function searchOnEnter(){
		if(window.event.keyCode==13){
			xmlConfig.getFirstItem('SearchEngine').maxPrice=valNumber(document.SearchEngine.Maxprice.value,'0','');
			xmlConfig.getFirstItem('SearchEngine').term=document.SearchEngine.Term.value;
			newSearch();
			};
		};