	// 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/Tandem Supervisor Ump Thumb.jpg",
		200, 106,
		"TandemSupervisorUmp", "Tandem Supervisor",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "105",
		"", "pd478641754.htm",
		"", 1,
		"TandemFlie", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/Tandem Gray Ghost Thumb.jpg",
		200, 105,
		"TandemGrayGhostUmp", "Tandem Gray Ghost",
		"3 Inches Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "105",
		"", "pd1717875736.htm",
		"", 1,
		"TandemFlie", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/Tung Hares Ear Olive Ump.jpg",
		115, 70,
		"TungHaresEarUmp 14", "Tungsten Gold Rib Hare&rsquo;s Ear Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd-815585835.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/pearl flash minnow thumb.jpg",
		100, 35,
		"PearlflashMinnow Lg.", "Pearl Flashabou Minnow Body",
		"", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "44",
		"Size;Large@", "pd-1579478158.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/Grizzly Barred Legs.jpg",
		200, 140,
		"BrizzlyBarredLegsMed Chart.", "Grizzly Barred Rubber Legs Medium",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "49",
		"Color;Chartreuse Green@", "pd2129606723.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/Grizzly Barred Legs.jpg",
		200, 140,
		"BrizzlyBarredLegSmal White", "Grizzly Barred Rubber Legs Small",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "49",
		"Color;White@", "pd-1354362570.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/Grizzly Barred Legs.jpg",
		200, 140,
		"BrizzlyBarredLegFine White", "Grizzly Barred Rubber Legs Fine",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "49",
		"Color;White@", "pd1555599557.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/Pearl Core Braid Thumb.jpg",
		150, 82,
		"PearlCoreBraid Olive", "Pearl Core Braid",
		"", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Olive@", "pd1000729001.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/HD (3)Thumb.jpg",
		100, 61,
		"HareLineDubbin1", "Hareline Dubbin",
		"100% Rabbit fur.", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "34",
		"Hareline Dubbin;Adams Gray@", "pd1844204027.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/images/nopicture.gif",
		55, 38,
		"1342 Blue", " Flashabou Weave Blue",
		"", "",
		"3.7", "0",
		"1", 1,
		"Pieces", "47",
		"", "pd1105310517.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/Copper j Zebra.jpg",
		150, 61,
		"CJZ 12", "Copper John Zebra",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-144638668.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/Copper J Chartreuse.jpg",
		150, 56,
		"CJChart. 12", "Copper John Chartreuse",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-689429842.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/Copper J Silver.jpg",
		150, 70,
		"CJSilver 12", "Copper John Silver",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-634687144.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/Copper J Black.jpg",
		150, 63,
		"CJBlack 12", "Copper John Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd1127577522.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/Copper J Blue.jpg",
		150, 60,
		"CJBlue 12", "Copper John Blue",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-655781828.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/Gummy Chartreuse (2)1 (2).jpg",
		195, 84,
		"GummyMinnowChart. 2", "Gummy Minnow Chartreuse",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd-408796560.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/Gummy Blue (2)1 (2).jpg",
		195, 82,
		"GummmyMinnowBlue 2", "Gummy Minnow Blue",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd-574255289.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/Tung Barbell eyes.jpg",
		100, 87,
		"TungHourglasseyes L.", "Flat-End Tungsten Hour Glass Eyes",
		"Gold", "",
		"7.95", "0",
		"1", 1,
		"Pieces", "4",
		"Size;Large@", "pd1160997309.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/silverside (2).jpg",
		220, 90,
		"BraidSilverside", "Braided Silverside",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "76",
		"Size;2@", "pd618068194.htm",
		"", 1,
		"Braided ba", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/HGBLA.jpg",
		200, 134,
		"FlatHourGlasseyesl", "Flat-End Hour Glass Eyes Nickel",
		"20 per pack", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "4",
		"Size;Large@", "pd1463480232.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/Rabbit Chartreuse (2).jpg",
		180, 71,
		"RABBIT Chartreuse 2", "Rabbit Candy Chartreuse",
		"Size 2 is 3&quot; Long &amp; Size 2/0 is 4&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd-39131170.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/Bunny Gotcha (2).jpg",
		140, 101,
		"BunnyGotcha 4", "Bunny Gotcha",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd841170514.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/Bluegill (3).jpg",
		240, 98,
		"BluegillPolarfibre2", "Bluegill Polarfibre Minnow",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"Size;2@", "pd-69941103.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/Bunny Clouser (2).jpg",
		180, 77,
		"Bummy ClouserWhite", "Bunny Clouser White",
		"Size 2 Long Shank", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "77",
		"Size;2@", "pd-1703284260.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/Enrico Black Red (3).JPG",
		220, 83,
		"EnricoTarponBk/Red", "Puglisi Tarpon Black/Red",
		"Tied on Tiemco 600SP 3/0 hook. 5 Inches long", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;3/0@", "pd1207669493.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/Enrico Pinfish (3).JPG",
		220, 76,
		"EnricoTarponpinfish", "Puglisi Pinfish",
		"Tied on Tiemco 600SP 3/0 hook. 5 Inches long", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;3/0@", "pd1800345488.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/Enrico Ghost (3).JPG",
		220, 76,
		"EnricoTarponGhost", "Puglisi Tarpon Ghost",
		"Tied on Tiemco 600SP 3/0 hook. 5 Inches long", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;3/0@", "pd-1088215321.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/Gummy Bronze (3).JPG",
		195, 77,
		"GummyBronze2", "Gummy Minnow Bronze",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd790409087.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/Gummy Clear (3).JPG",
		195, 77,
		"GummyMinnowClear2", "Gummy Minnow Clear",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd-40329056.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/Tarpon Black Death (3).JPG",
		220, 121,
		"TBlackDeath", "Black Death",
		"Tied on Tiemco 600SP size 3/0. 4 1/4&quot; in length", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1130254569.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/Tarpon Coachroach (3).JPG",
		220, 100,
		"TCockroach", "Cockroach",
		"Tied on Tiemco 600SP size 3/0. 4 1/4&quot; in length", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1301600961.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/Tarpon Keys Blue (3).JPG",
		220, 100,
		"TCockroachBlue", "Cockroach Blue",
		"Tied on Tiemco 600SP size 3/0. 4 1/4&quot; in length", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd509127045.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/Tarpon Keys Yellow (3).JPG",
		220, 95,
		"TCockroachYellow", "Cockroach Yellow",
		"Tied on Tiemco 600SP size 3/0. 4 1/4&quot; in length", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd2005409595.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/images/nopicture.gif",
		55, 38,
		"Chenille Fine", "Chenille Fine",
		"", "",
		"0.6", "0",
		"1", 1,
		"Pieces", "45",
		"Color;Black@", "pd1224343202.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/images/nopicture.gif",
		55, 38,
		"EP3DBackCountry", "Enrico Sea Fibers 3-D",
		"", "",
		"5.75", "0",
		"1", 1,
		"Pieces", "50",
		"Enrico 3D;Back Country@", "pd-642240195.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/Enrico Tarpon Purple (3).JPG",
		220, 88,
		"EnricoTarponPurple/B", "Puglisi Tarpon Purple/Black",
		"Tied on Tiemco 600SP 3/0 hook. 5 Inches long", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;3/0@", "pd-1557606371.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/Enrico Purple (3).JPG",
		220, 94,
		"EnricoPurpleBlack", "Enrico Purple/Black",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;1/0@", "pd806619027.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/Sili Legs Gotcha Chartresue (3).JPG",
		155, 100,
		"SilelegsGotchaChart4", "Sili Legs Gotcha Chartreuse",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd1795369179.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/Sili Legs Gotcha Pink (3).JPG",
		155, 103,
		"SiliLigGotchaPink 4", "Sili Legs Gotcha Pink",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd803763351.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/Sili Legs Gotcha (3).JPG",
		155, 87,
		"SiliLegGotchaPearl 4", "Sili Legs Gotcha Pearl",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd2015089683.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/Bonefish Clouser Chartreuse (3).JPG",
		155, 50,
		"BoneFishClouserChart", "Bonefish Clouser Chartreuse/White",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd1503674182.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/Bonefish Clouser Tan White (3).JPG",
		155, 48,
		"BonefishclouserTan", "Bonefish Clouser Tan/White",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd-2078083563.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/Bonefish Special (3).JPG",
		155, 92,
		"Bonefishspecial 4", "Bonefish Special",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd1624844931.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/Exuma Mini Puff Pearl (3).JPG",
		155, 122,
		"ExumaMiniPuffPear 6", "Exuma Mini Puff Pearl",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;6@", "pd1507046630.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/Exuma Mini Puff Tan (3).JPG",
		155, 71,
		"ExumaMiniPuffTan 6", "Exuma Mini Puff Tan",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;6@", "pd-371249326.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/Band wing Charlie Pink (3).JPG",
		155, 98,
		"BandwingCharliePink 4", "Band Wing Charlie Pink",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd-1365298649.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/Band wing Charlie Root Beer (3).JPG",
		155, 105,
		"BandwingCharlieRB 4", "Band Wing Charlies Root Beer",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd405688488.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/Tuxedo pearl (3).JPG",
		155, 105,
		"TuxGotchaPearl 4", "Tuxedo Gotcha Pearl",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd1347885876.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/Tuxedo pink (3).JPG",
		155, 105,
		"TuxGotchaPink 4", "Tuxedo Gotcha Pink",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd287966848.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/Tuxedo Root Beer (3).JPG",
		155, 105,
		"TuxGotchaRB 4", "Tuxedo Gotcha Root Beer",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd1976606348.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/Enrico Crab Tan (3).JPG",
		155, 140,
		"Enricocrabtan 2", "Enrico Crab Tan",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd-1877424930.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/Needlefish Chartreuse (3).JPG",
		155, 48,
		"NastyNeedleChart.", "The Nasty Needle Chartreuse",
		"Size 2/0 Long Shank.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1727327804.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/Needlefish Orange (3).JPG",
		155, 40,
		"nastyneedleorange", "The Nasty Needle Orange",
		"Size 2/0 long shank.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-962793782.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/Barracuda Needlefish (3).JPG",
		155, 32,
		"Needlefish", "Needlefish Olive",
		"Size 1/0 Long Shank", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1134324456.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/Barracuda Green (3).JPG",
		155, 41,
		"BarracudaGreenBack", "Barracuda Bait Green Back",
		"Tied on TMC 600SP 3/0", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"", "pd545909590.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/Barracuda Brown (3).JPG",
		155, 42,
		"BarracudaBaitBrown", "Barracuda Bait Brown Back",
		"Tied on TMC 600SP 3/0", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "81",
		"", "pd158161268.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/BMROLIVE (3).JPG",
		150, 113,
		"BMR Chart", "Olive Barred Magnum Rabbit Strips 1/4&quot;",
		"", "",
		"4.1", "0",
		"1", 1,
		"Pieces", "40",
		"Color;Chartreuse@", "pd2083736760.htm",
		"", 1,
		"Rabbitstri", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/CDC Loop (2).jpg",
		150, 85,
		"CDCLoopTan", "CDC Loop Wing Emerger Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;14@", "pd1078761935.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/CDC Loop Olive.jpg",
		150, 74,
		"CDCLoopOlive 16", "CDC Loop Wing Emerger Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd1182694603.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/Striper Slayer Chart b.jpg",
		180, 55,
		"StriperSwiperChart.", "Striper Swiper Chartreuse Size 1/0",
		"6 Inches long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd1144768253.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/Striper Swiper Olive (2).jpg",
		180, 60,
		"Striperswiperolive", "Striper Swiper Olive Size 1/0",
		"6 inches long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd415193459.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/Striper Slayer Blue b.jpg",
		180, 52,
		"Striperswiperblue", "Striper Swiper Mackerel Size 1/0",
		"6 inches long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd-1361688359.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/SSS (3).JPG",
		100, 68,
		"Stainlesssteelbeadch m", "Stainless Steel bead chain eyes",
		"", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "3",
		"Size;Medium@", "pd-1194327834.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/18C (3).JPG",
		120, 93,
		"CBL1", "Bead Heads Black",
		"Counter Sunk 24 per pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "2",
		"Bead Head Sizes;1/16@", "pd999664004.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/18C (3).JPG",
		120, 93,
		"CC1", "Bead Heads Copper",
		"Counter Sunk 24 per pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "2",
		"Bead Head Sizes;1/16@", "pd1481698055.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/18C (3).JPG",
		120, 93,
		"CG1", "Bead Heads Gold",
		"Counter Sunk 24 per pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "2",
		"Bead Head Sizes;1/16@", "pd-6391873.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/18C (3).JPG",
		120, 93,
		"CN1", "Bead Heads Nickel",
		"Counter Sunk 24 per pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "2",
		"Bead Head Sizes;1/16@", "pd192852855.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/18TB (3).JPG",
		120, 60,
		"TungBeadsSilver 1", "Tungsten Beads Silver",
		"Twice as heavy as brass beads.", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "2",
		"Tungsten Beads;5/64 2MM@", "pd614427747.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/18TB (3).JPG",
		120, 60,
		"TungBeadsCopper 1", "Tungsten Beads Copper",
		"Twice as heavy as brass beads.", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "2",
		"Tungsten Beads;5/64 2MM@", "pd746020162.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/18TB (3).JPG",
		120, 60,
		"TungBeadsBlack 1", "Tungsten Beads Black",
		"Twice as heavy as brass beads.", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "2",
		"Tungsten Beads;5/64 2MM@", "pd925569629.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/tmc2312.jpg",
		133, 43,
		"TMC2312 1", "Tiemco TMC2312",
		"Slightly Humped, Straight Eye, 1X Fine, 2X Long.", "",
		"5.45", "0",
		"1", 1,
		"Pieces", "30",
		"TMC2312;Qty. 25 Size 6@", "pd1867434780.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/tmc518.jpg",
		101, 49,
		"TMC518 1", "Tiemco TMC518",
		"Straight Eye, 3X Fine", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC518;Qty. 25 Size 28@", "pd-2075926190.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/Light Bug Silver (2).jpg",
		150, 75,
		"LightningBug 14", "Lightning Bug Silver",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;14@", "pd1543550896.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/Light Bug Gold (2).jpg",
		150, 71,
		"Lightning Bug Gold 14", "Lightning Bug Gold",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;14@", "pd-2127125747.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/tmc100.jpg",
		93, 37,
		"TMC1001", "Tiemco TMC100",
		"Dry Fly, Down Eye, 1X Fine.", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC100;Qty. 25 Size 8@", "pd-1863847419.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/tmc5212.jpg",
		125, 42,
		"TMC52121", "Tiemco TMC5212",
		"Dry Fly 1X Fine 2X Long ", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC5212;Qty. 25 Size 6@", "pd-538450103.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/tmc200r.jpg",
		143, 54,
		"TMC200R1", "Tiemco TMC200R",
		"Nymph Hook, Straight Eye 3X Long", "",
		"5.45", "0",
		"1", 1,
		"Pieces", "30",
		"TMC200R;Qty. 25 Size 4@", "pd-1326470792.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/tmc2488.jpg",
		95, 48,
		"TMC24881", "Tiemco TMC2488",
		"Fine Wire, 3X Wide, 2X Short, Curved Shank.", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC2488;Qty. 25 Size 10@", "pd1184096003.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/tmc2487.jpg",
		89, 47,
		"TMC24879", "Tiemco TMC2487",
		"Caddis Pupa, Emergers, Shrimp, Fine Wire, 2X Wide, 2X Short.", "",
		"14.95", "0",
		"1", 1,
		"Pieces", "30",
		"TMC2487;Qty. 100 Size 10@", "pd217221353.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/tmc2457.jpg",
		88, 47,
		"TMC24571", "Tiemco TMC2457",
		"Caddis Pupa, 2X Heavy, 2X Wide, 2X Short.", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC2457;Qty. 25 Size 6@", "pd574758655.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/3769.jpg",
		83, 35,
		"TMC37691", "Tiemco TMC3769",
		"Nymph Hook, 2X Heavy.", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC3769;Qty. 25 Size 6@", "pd1909047318.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/tmc3761.jpg",
		91, 34,
		"TMC37611", "Tiemco TMC3761",
		"Nymph Hook, 2X Heavy, 1X Long, Down Eye.", "",
		"6.2", "0",
		"1", 1,
		"Pieces", "30",
		"TMC3761;Qty. 25 Size 4@", "pd-1818231282.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/tmc5262.jpg",
		97, 35,
		"TMC52621", "Tiemco TMC5262",
		"Nymph &amp; Streamer Hook, 2X Heavy, 2X Long.", "",
		"6.15", "0",
		"1", 1,
		"Pieces", "30",
		"TMC5262;Qty. 25 Size 4@", "pd586171229.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/tmc5263.jpg",
		104, 35,
		"TMC52631", "Tiemco TMC5263",
		"Streamer &amp; Nymph Hook, 2X Heavy, 3X Long.", "",
		"6.15", "0",
		"1", 1,
		"Pieces", "30",
		"TMC5263;Qty. 25 Size 2@", "pd1154052524.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/600SP.jpg",
		124, 71,
		"TMC600SP2", "Tiemco 600SP",
		"Saltwater Super Point, 3X Heavy, 3X Wide, 2X Short, Black Nickel", "",
		"10.5", "0",
		"1", 1,
		"Pieces", "30",
		"TMC600SP;Qty. 14 Size 2@", "pd-359456109.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/tmc800s.jpg",
		135, 66,
		"TMC800S1", "Tiemco TMC800S",
		"Saltwater, Stainless, Straight Eye, Heavy Wire.", "",
		"11.6", "0",
		"1", 1,
		"Pieces", "30",
		"TMC800S;Qty. 25 Size 2@", "pd-626562570.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/tmc811s.jpg",
		158, 67,
		"TMC811S1", "Tiemco TMC811S",
		"Saltwater, Stainless, Straight Eye, Extra Strong.", "",
		"16.2", "0",
		"1", 1,
		"Pieces", "30",
		"TMC811S;Qty. 25 Size 4/0@", "pd-775785257.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/tmc300.jpg",
		150, 39,
		"TMC3001", "Tiemco TMC300",
		"Streamer Hook, Down Eye, Heavy Wire, 6X Long.", "",
		"6.15", "0",
		"1", 1,
		"Pieces", "30",
		"TMC300;Qty. 25 Size 2@", "pd-70893022.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/tmc101.jpg",
		93, 36,
		"TMC1011", "Tiemco TMC101",
		"Dry Fly, 1X Fine, Straight Eye", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC101;Qty. 25 Size 10@", "pd147573592.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/tmc9300.jpg",
		105, 41,
		"TMC93001", "Tiemco TMC9300",
		"Dry &amp; Wet Flies, Down Eye, 1X Heavy.", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC9300;Qty. 25  Size 8@", "pd-691494025.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/tmc100SP_BL.jpg",
		81, 36,
		"TMC100BL1", "Tiemco TMC100BL",
		"Barbless Dry Fly, 1X Fine", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "30",
		"TMC100BL;Qty. 25 Size 10@", "pd1977918830.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/images/nopicture.gif",
		55, 38,
		"TMC107SP1", "Tiemco TMC107SP",
		"Wet Fly, Super Point, 2X Heavy.", "",
		"7.1", "0",
		"1", 1,
		"Pieces", "30",
		"TMC107SP;Qty. 25 Size 6@", "pd1913686825.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/tmc2302.jpg",
		137, 44,
		"TMC23021", "Tiemco TMC2302",
		"Humped Shank, 2X Long.", "",
		"5.45", "0",
		"1", 1,
		"Pieces", "30",
		"TMC2302;Qty. 25 Size 6@", "pd819078236.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/tmc7989.jpg",
		120, 44,
		"TMC79891", "Tiemco TMC7989",
		"Steelhead &amp; Salmon Dries, Up-Turned Loop-Eye, Black", "",
		"10.8", "0",
		"1", 1,
		"Pieces", "30",
		"TMC7989;Qty. 25 Size 2@", "pd1403267825.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/tmc7999.jpg",
		125, 47,
		"TMC79991", "Tiemco TMC7999",
		"Steelhead &amp; Salmon Flies, Up-Turned Tapered loop Eye.", "",
		"12.5", "0",
		"1", 1,
		"Pieces", "30",
		"TMC7999;Qty. 25 Size 2/0@", "pd1589246748.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/tmc206bl.jpg",
		108, 48,
		"TMC206BL1", "Tiemco TMC206BL",
		"Curved Shank, 2X Short, Caddis Larvae, Emergers", "",
		"5.45", "0",
		"1", 1,
		"Pieces", "30",
		"TMC206BL;Qty. 25 Size 10@", "pd1837236619.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/tmc700.jpg",
		125, 43,
		"TMC7001", "Tiemco TMC700",
		"Steelhead &amp; Salmon Streamers, Down Eye, Heavy Wire, Black.", "",
		"9.25", "0",
		"1", 1,
		"Pieces", "30",
		"TMC700;Qty. 25 Size 1/0@", "pd2100968506.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/tmc8089.jpg",
		125, 55,
		"TMC80891", "Tiemco TMC8089",
		"Bass Bugs, Straight Eye, Fine Wire.", "",
		"7.7", "0",
		"1", 1,
		"Pieces", "30",
		"TMC8089;Qty. 25 Size 2@", "pd-1332028965.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/tung wd (2).jpg",
		150, 91,
		"TnugWD40Olive18", "Tungsten WD-40 Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;18@", "pd-280921401.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/GCSN (2).JPG",
		180, 143,
		"GrizzlyCapon1", "Grizzly Capon Streamer Neck",
		"", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Grizzly Dyed Chartreuse@", "pd924508577.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/images/nopicture.gif",
		55, 38,
		"V-Rib Small", "V-Rib Small",
		"", "",
		"1.2", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Clear@", "pd-240811974.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/Hot Wire Caddis Amber (2).jpg",
		150, 135,
		"HotWireCadAmber14", "Hot Wire Caddis Amber",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-316759352.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/Hot Wire Caddis Olive (2).jpg",
		150, 144,
		"HotWireCadOlive14", "Hot Wire Caddis Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-1118246148.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/Tung phea soft.jpg",
		125, 100,
		"TungSoftphea14", "Tungsten Soft Hackle Pheasant Tail",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd-516379299.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/Tung Swing Caddis.jpg",
		125, 100,
		"TubgSwing Caddis", "Tungsten Swing Caddis Brown",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd910976280.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/Deer hex.jpg",
		125, 89,
		"Deer Hex", "Deer Body Hex ",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;6@", "pd706544143.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/Hex Limbata.jpg",
		125, 77,
		"Hex Limbata", "Hexagenia Limbata Dun #6",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"", "pd1145508565.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/Red Ass.jpg",
		125, 78,
		"Redass16", "Red Ass",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1998838000.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/Hi-Vis Foam Beetle.jpg",
		125, 111,
		"HiVisBetle12", "Hi-Vis Foam Beetle Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;12@", "pd-566558899.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/Flat Head Beetle.jpg",
		125, 111,
		"Flatheadbeetle14", "Flat Head Beetle",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;14@", "pd954761160.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/Hi vis ant.jpg",
		125, 111,
		"Hi-Vis Ant14", "Hi-Vis Ant Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;14@", "pd-157789499.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/Flash Mini egg salmon.jpg",
		125, 111,
		"FlashNini EggSalm", "Flashtail Mini Egg Salmon",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd338672032.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/Flash Mini egg pink.jpg",
		125, 89,
		"flashmini egg pink16", "Flashtail Mini Egg Pink",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1425969207.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/images/nopicture.gif",
		55, 38,
		"Whiting100Meddun14", "Whiting 100 Pack Med. Dyed Dun",
		"", "",
		"18.25", "0",
		"1", 1,
		"Pieces", "62",
		"Size;14@", "pd1961516838.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/images/nopicture.gif",
		55, 38,
		"Whiting100Brown", "Whiting 100 Pack Brown",
		"", "",
		"18.25", "0",
		"1", 1,
		"Pieces", "62",
		"Size;14@", "pd247912309.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/Was Lanyard.jpg",
		200, 138,
		"Wasatchlanyard", "Wasatch Tool Lanyard",
		"", "",
		"16.05", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1189164699.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/FOL (2).JPG",
		125, 85,
		"Football Ind.FlYello", "Football Foam Indicators Fl. Yellow",
		"Lock in position by stretching the tubing when placing on your leader.", "",
		"3.55", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd1625492033.htm",
		"", 1,
		"Indi.", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/Green Sedge Pupa.jpg",
		125, 65,
		"greenSedgePupa", "Green Sedge Pupa",
		"Tied On A Number 16 Tiemco Hook", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"", "pd1189253733.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/CDCEmereger Para.jpg",
		125, 76,
		"CDCEmergerPara20", "CDC Emerger Parachute",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;20@", "pd720624321.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/Headlight Green.jpg",
		135, 85,
		"Headlight Caddis Gre16", "Headlight Caddis Green ",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;16@", "pd-1909241396.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/Lake Dragon.jpg",
		135, 80,
		"LakeDragon6", "Lake Dragon",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;6@", "pd-958601645.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/Barr Flies.jpg",
		150, 206,
		"Barr Flies", "Barr Flies By John Barr. ",
		"Autographed Copy", "",
		"39.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd1189775989.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/images/nopicture.gif",
		55, 38,
		"YH Black", "Saltwater Yak Hair",
		"", "",
		"5.2", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Black@", "pd1688879478.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/TK1 (2).JPG",
		200, 121,
		"thickwingblack", "Thick Wing",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Black@", "pd-873533866.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/PAD (2).JPG",
		150, 119,
		"pad", "Replacement Cutting Pad ",
		"", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-1079828498.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/images/nopicture.gif",
		55, 38,
		"Whiting100Grizzly14", "Whiting 100 Pack Grizzly",
		"", "",
		"18.25", "0",
		"1", 1,
		"Pieces", "62",
		"Size;14@", "pd1468516439.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/5 Curved.jpg",
		100, 138,
		"Strforceps", "Umpqua 5&quot; Straight Forceps",
		"", "",
		"9.5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1216813934.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/pinon.jpg",
		125, 155,
		"Umpq Pinretra", "Umpqua Pin On Retractor",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd56846156.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/Foamstim.jpg",
		120, 101,
		"Foamulat", "Foamulator #8",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Color;Black@", "pd-343329260.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/Golden Crest.jpg",
		200, 113,
		"GoldCrest", "Golden Pheasant Crest",
		"", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd322713166.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/spf (2).jpg",
		200, 133,
		"Silverpheasstrung1", "Silver Pheasant Body Feathers Strung",
		"", "",
		"4.75", "0",
		"1", 1,
		"Pieces", "37",
		"Silver Pheasant Colors;Highlander Green@", "pd-1009836143.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/deceiverwhite.JPG",
		179, 107,
		"SWD1061", "White Deceiver",
		"White deceiver", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd572674156.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/Deceiver chart.JPG",
		184, 110,
		"SWD1011", "Chartreuse/white Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd-1602119642.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/deceiver blue.JPG",
		179, 135,
		"SWD1121", "Blue/White Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd200872875.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/deceiverolive.JPG",
		179, 130,
		"SWD1161", "Olive/White Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd-2003740644.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/deceiverblack.JPG",
		198, 121,
		"SWD1211", "Black Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd1470719433.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/deceiverv green.JPG",
		187, 130,
		"SWD1261", "Green/White Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd354921410.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/deceiver red yellow.JPG",
		182, 137,
		"SWD1221", "Yellow/Red Deceiver",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd-216101673.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/marabou c epoxy 1.JPG",
		180, 107,
		"SWE1381", "Marabou Epoxy Chartreuse",
		"Size 2 is 2 1/2&quot; Long, Size 2/0 is 3&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd1734078494.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/Clouser Chartreuse (3).JPG",
		180, 79,
		"SWC1301", "Clouser Minnow Chartreuse/White",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"Size;1/0@", "pd981683722.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/Clouser Olive (3).JPG",
		180, 82,
		"SWC1361", "Clouser Minnow Olive/White",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"Size;1/0@", "pd377798143.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/hares ear flash.JPG",
		115, 85,
		"N40212", "Hare&rsquo;s Ear Flashback",
		"Hare&rsquo;s Ear Flashback", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd1476392224.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/bh hares ear.JPG",
		120, 90,
		"N408 12", "Bead Head Flashback Hares Ear",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd1007837262.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/hares ear.JPG",
		135, 80,
		"N512", "Hare&rsquo;s Ear",
		"Hare&rsquo;s Ear", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-1755286733.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/olive hares ear.JPG",
		135, 95,
		"N518 10", "Olive Hares Ear",
		"Hare&rsquo;s Ear", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd-1270089575.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/olive hares flash.JPG",
		135, 85,
		"N414", "Olive Hare&rsquo;s Ear Flashback",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;14@", "pd-103177877.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/bh olive hares ear.JPG",
		140, 95,
		"N422 12", "B.H. Flashback Olive Hares Ear",
		"Olive Hare&rsquo;s Ear Flashback", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd1643295121.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/pheasant tail.JPG",
		114, 66,
		"N530 12", "Pheasant Tail",
		"Pheasant Tail", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd393817763.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/pheasant flash.JPG",
		118, 42,
		"N427 12", "Pheasant Tail Flashback",
		"Pheasant Tail Flashback", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-2146663387.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/bh pheasant tail.JPG",
		130, 85,
		"N435 12", "B.H. Pheasant Tail Flashback",
		"B.H. Pheasant Tail Flashback", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-404986217.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/prince B.jpg",
		120, 106,
		"Prince 16", "Prince Nymph",
		"Prince Nymph", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;16@", "pd-845252282.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/BH prince B.jpg",
		126, 86,
		"N460 12", "B.H. Prince Nymph",
		"B.H. Prince Nymph", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;12@", "pd-800141237.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/red fox sq  B.jpg",
		122, 90,
		"N480 10", "Red Fox Squirrel Nymph",
		"Red Fox Squirrel Nymph", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd1416564372.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/BH Squirrel B.jpg",
		135, 131,
		"N485 10", "B.H. Red Fox Squirrel Nymph",
		"B.H. Red Fox Squirrel Nymph", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd191326817.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/Zwing green.JPG",
		94, 97,
		"BHZWINGGREEN 14", "B.H. Z-Wing Caddis Green",
		"Tied on TMC hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-224385542.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/Zwing cream.JPG",
		104, 83,
		"ZBZWINGCREAM 14", "B.H. Z-Wing Caddis Cream",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-1670019537.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/caddis candy hare.JPG",
		95, 80,
		"N470 12", "Bead Head Caddis Candy",
		"Tan", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;12@", "pd-876106608.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/caddis candy green.JPG",
		95, 90,
		"N474 12", "Bead Head Caddis Candy",
		"Caddis Green", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;12@", "pd1348953197.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/peeking caddis.jpg",
		105, 95,
		"N5491", "Peeking Caddis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;12@", "pd-1045428926.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/grey ghost 1.JPG",
		150, 91,
		"SM1011", "Gray Ghost",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;10@", "pd1150564684.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/marabou gray ghost 1.JPG",
		150, 86,
		"SS1121", "Gray Ghost Marabou",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd419203568.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/charlies smelt 1.JPG",
		150, 94,
		"SS1171", "Charlies Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd944499789.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/marabou smelt 1.JPG",
		150, 106,
		"SS1201", "Marabou Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd1963844393.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/magog smelt 1.JPG",
		150, 76,
		"SS1301", "Magog Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd-1908796978.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/dusky smelt 1.JPG",
		150, 115,
		"SS1351", "Dusky Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd-1248004113.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/supervisor 1.JPG",
		150, 109,
		"SS1381", "Supervisor",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd945945835.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/ballou special 1.JPG",
		150, 114,
		"SS1451", "Ballou Special",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd279917477.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/marabou black ghost 1.JPG",
		150, 112,
		"SA1011", "Marabou Black Ghost",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-399591890.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/mickey finn 1.JPG",
		150, 94,
		"SA1151", "Mickey Finn",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-442614279.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/baby bunk 1.JPG",
		155, 99,
		"SWB2261", "Baby Bunker",
		"Size 2 is 2&quot; Long and size 1/0 is 3&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd1689021292.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/popov olive 1.JPG",
		180, 66,
		"SWE150 2", "Popovics Olive",
		"Size 2", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd1820969643.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/Fishhead Olive-Black.JPG",
		109, 77,
		"SWFH190", "Fishhead Olive/Black Size 1/0",
		"Fishhead Olive/Black", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd-2013256723.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/Fishhead Chart-White.JPG",
		148, 74,
		"SWF191", "FishHead Chartreuse/White Size 1/0",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd258452712.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/Sea Serpant.JPG",
		138, 80,
		"SWM245", "Sea Serpant",
		"Size 2", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "85",
		"Size;2@", "pd1639828511.htm",
		"", 1,
		"M", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/dixons devil worm.JPG",
		110, 64,
		"SWW2381", "Dixons Devil Worm",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "85",
		"Size;1/0@", "pd-2093785406.htm",
		"", 1,
		"M", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/half-half chart.JPG",
		143, 70,
		"SWH/H01", "Half/Half",
		"Chartreuse/White Size 1/0", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "89",
		"", "pd-1447031058.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/Flashback stonefly.JPG",
		135, 54,
		"NS1011", "Flashback Stonefly",
		"Black", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "97",
		"Size;10@", "pd-702314804.htm",
		"", 1,
		"NS", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/Montana stone.JPG",
		141, 90,
		"NS1071", "Montana Stone",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "97",
		"Size;4@", "pd-231552122.htm",
		"", 1,
		"NS", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/snake fly 3 A.JPG",
		200, 254,
		"Tab.snakefly black", "Taborys Snake Fly Size 1/0",
		"Approximately 4&quot; long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "83",
		"Color;Black@", "pd-1475384030.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/Fishhead bunker.JPG",
		131, 76,
		"SWF195 2-0", "FishHead Blue/White",
		"Bunker", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "74",
		"Size;2/0@", "pd2041997495.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/HH herring.JPG",
		140, 83,
		"SWHH230", "Hair Head Herring",
		"Size 2/0", "",
		"4", "0",
		"1", 1,
		"Pieces", "83",
		"Size;2/0@", "pd-1160694726.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/HH Pollack.JPG",
		140, 101,
		"SWHH232", "Hair Head Pollack",
		"Size 2/0", "",
		"4", "0",
		"1", 1,
		"Pieces", "83",
		"Size;2/0@", "pd-1863473255.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/taborys slab side.JPG",
		138, 73,
		"SWHH152", "Taborys Slab Side",
		"Size 3/0", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "83",
		"Size;3/0@", "pd415075460.htm",
		"", 1,
		"HH", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/l long dusky 1.JPG",
		175, 80,
		"Dusky SmelLong", "Dusky Smelt Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-2042013589.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/l Rainbow ghost.jpg",
		175, 57,
		"RainbowGhoslong", "Rainbow Ghost Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd786776209.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/l Supervisor 1.JPG",
		175, 83,
		"SuperLong", "Supervisor Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd1188904231.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/lSupervisor jc 1.JPG",
		175, 73,
		"Supervijclong", "Supervisor With Jungle Cock Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-226286675.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/long gray 1.JPG",
		175, 53,
		"TS08", "Grey Ghost long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd245548451.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/long gray jc 1.JPG",
		175, 95,
		"TS09", "Grey Ghost with jungle cock eyes Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-1182642039.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/dk cahill.JPG",
		140, 120,
		"DT011", "Dark Cahill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd-648434209.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/lt cahill.JPG",
		140, 130,
		"DT071", "Light Cahill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd-1158236287.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/quill gordon.JPG",
		135, 125,
		"DT101", "Quill Gordon",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd1514315418.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/Light hendrickson.jpg",
		120, 91,
		"DT141", "Light Hendrickson",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;12@", "pd1992096847.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/bwo.JPG",
		120, 115,
		"DT991", "Blue Wing Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd218409520.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/Stimulator yellow.JPG",
		150, 146,
		"A091", "Stimulator Yellow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;10@", "pd-241808499.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/royal wulff.JPG",
		145, 135,
		"A891", "Royal Wulff",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;10@", "pd1064744553.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/l Green witch 1.JPG",
		175, 77,
		"Greenwilong", "Green Witch Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd768498400.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/royal coach.JPG",
		130, 125,
		"A4 1", "Royal Coachman",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;14@", "pd874920974.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/sparrow A.JPG",
		125, 68,
		"N8", "Sparrow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd1845082362.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/cdc caddis olive.JPG",
		120, 70,
		"E61", "CDC Caddis Emerger Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;14@", "pd1104670648.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/shrimp A.JPG",
		154, 85,
		"Shr", "Shrimp Olive Epoxy Back Size 2",
		"Size 2", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-641057066.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/legged hopper A.JPG",
		140, 72,
		"T50", "Legged Hopper",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;8@", "pd-2047462160.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/metal caddis red.JPG",
		90, 75,
		"CN10 14", "Mettalic caddis red",
		"red", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd2018059207.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/bh met caddis red.JPG",
		90, 90,
		"CN1 16", "B.H. Metallic caddis red",
		"Red", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;16@", "pd-1903010872.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/bh met caddis green.JPG",
		85, 85,
		"CN5 14", "B.H. metallis caddis Green",
		"Green", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd1011554388.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/metal caddis green.JPG",
		68, 44,
		"CN8 14", "Metallic caddis green",
		"Green", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-1725885024.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/royal coach streamer 1.JPG",
		150, 88,
		"SA1221", "Royal Coachman",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd1054791997.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/footer special 1.JPG",
		150, 74,
		"SA1301", "Footer Special",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;4@", "pd675106150.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/cardinelle 1.JPG",
		150, 114,
		"SA1401", "Cardinelle",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;4@", "pd1905243115.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/dbunny nat 1.JPG",
		150, 63,
		"SWDB01", "Double Bunny",
		"Natural/White Size 1/0", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "91",
		"Size;1/0@", "pd-1219915099.htm",
		"", 1,
		"SWDB", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/dbunny chart 1.JPG",
		150, 50,
		"SWDB05", "Double Bunny Chartreuse/White Size 2/0",
		"", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "91",
		"Size;2/0@", "pd2049260288.htm",
		"", 1,
		"SWDB", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/double bunny nat fresh 1.JPG",
		200, 71,
		"FB101 4", "Double Bunny Fly",
		"Natural/White Size 4", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "67",
		"Size;4@", "pd-375504617.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/Sucker%20Bait 155.JPG",
		175, 88,
		"TS10", "Sucker Bait",
		"Sucker Bait", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-945794716.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/Fishhead White A.JPG",
		125, 78,
		"SWFH196", "Fishhead White",
		"Size 2", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "74",
		"Size;2@", "pd564569650.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/cdc caddis brown.JPG",
		136, 68,
		"E11", "CDC Caddis Emerger Brown",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;14@", "pd116836927.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/para cahill.JPG",
		132, 105,
		"DP061", "Light Cahill Parachute",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;14@", "pd-683695903.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/para olive.JPG",
		130, 66,
		"DP091", "Blue Wing Olive parachute",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd217491709.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/ant.JPG",
		76, 84,
		"T11", "Black ant",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;14@", "pd187736693.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/joes hopper.JPG",
		140, 98,
		"T66", "Joes Hopper",
		"Yellow Body", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;8@", "pd-567570006.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/green ghost 1.JPG",
		150, 107,
		"SS1581", "Green Ghost",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd-864824545.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/maravbou caddis green.JPG",
		79, 79,
		"CN6891", "Marabou caddis green",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd956721947.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/maravbou caddis chart.JPG",
		75, 75,
		"CN6751", "Marabou caddis Chartreuse",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-1926553140.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/muddler minnow 1.JPG",
		150, 74,
		"MM011", "Muddler Minnow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "66",
		"Size;10@", "pd-91842375.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/mara mudd olive 1.JPG",
		150, 113,
		"MM02 4", "Marabou muddler minnow Olive",
		"Olive", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "66",
		"Size;4@", "pd-1827932751.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/mara mudd yellow 1.JPG",
		150, 87,
		"MM02 4", "Marabou Muddler Minnow Yellow",
		"Yellow", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "66",
		"Size;4@", "pd109175235.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/mara mudd black 1.JPG",
		150, 95,
		"MM042", "Marabou Muddler Minnow Black",
		"Black", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "66",
		"Size;4@", "pd1917103685.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/Firetail wooly bugger A.JPG",
		125, 98,
		"WB021", "Firetail Wooly Bugger (Chartreuse)",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd577228727.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/BH Wooly bugger black A.JPG",
		125, 87,
		"WB03 4", "B.H. Wooly Bugger Black",
		"Black", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd312059896.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/Macarel Dec A.JPG",
		199, 103,
		"SWD100", "Mackerel Deceiver",
		"3/0", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "89",
		"", "pd-2009788565.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/magn bunker 1.JPG",
		250, 96,
		"CB1", "Cowens Magnum Bunker Size 3/0",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd-1414617892.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/Wooly Bug Olive-Black A1.JPG",
		125, 65,
		"WB191", "Wooly Bugger Olive/Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;10@", "pd1455971491.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/gurgler white A.JPG",
		140, 82,
		"SWM31", "Gurgler Size 2",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "92",
		"Color;Black@", "pd1561856686.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/Olive-black-grizz wooly bugger A.JPG",
		125, 107,
		"WB05 6", "Wooly Bugger Black/Olive/Grizzly",
		"Black/Olive/Grizzly", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;6@", "pd602260303.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/BH Olive-black-grizz wooly bugger A.JPG",
		125, 102,
		"WB06 6", "B.H. Wooly Bugger Black/Olive Grizzly",
		"Black/Olive/Grizzly", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;6@", "pd1444369712.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/float smelt 1.JPG",
		150, 56,
		"floatsmelt1", "Floating Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;2@", "pd1718798538.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/Abel Anchovy A.JPG",
		200, 119,
		"AB1", "Abel Anchovy",
		"Size 1/0", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"Size;1/0@", "pd12536826.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/mullet a 1.JPG",
		250, 95,
		"M1", "Mullet White",
		"Size 3/0", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "84",
		"Size;3/0@", "pd-40435802.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/Gold Tubing A.JPG",
		180, 34,
		"GMT", "Gold Mylar Tubing Med.",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "44",
		"", "pd-1008518358.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/6-0 Fl. Thread A.JPG",
		100, 141,
		"Thread Blue", "6/0 Fluorscent Flymaster Waxed",
		"200 Yard Spools", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "51",
		"Floss Thread;Fl. Blue@", "pd-1378675724.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/3-0 Monocord A.JPG",
		100, 146,
		"3/0 Black", "3/0 Danvills Monocord Thread",
		"100 Yard Spools", "",
		"1.35", "0",
		"1", 1,
		"Pieces", "51",
		"6/0;Black@", "pd-209958445.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/Fl. Chenille 1.JPG",
		100, 76,
		"Fl. Chenille Blue", "Fluorscent Chenille Med.",
		"", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "45",
		"Chenille;Fl. Blue@", "pd44248443.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/Chenille 1.JPG",
		100, 105,
		"Chenille Black", "Chenille Med.",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "45",
		"Chenille;Black@", "pd851022010.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/Rusty Rat A 1.JPG",
		171, 112,
		"ASRR", "Rusty Rat",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "0",
		"Size;1/0@", "pd-1375242329.htm",
		"", 1,
		"ACF", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/Blue Charm A 1.JPG",
		171, 122,
		"ASBC", "Blue Charm",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "0",
		"Size;1/0@", "pd1331245034.htm",
		"", 1,
		"ACF", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/Royal Charm A 1.JPG",
		171, 122,
		"ASRC", "Royal Charm",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "0",
		"Size;1/0@", "pd-458361079.htm",
		"", 1,
		"ACF", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/Emergent B sparkle pupa B.jpg",
		110, 66,
		"ESPT1", "Emergent Sparkle Pupa Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;12@", "pd783336116.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/Green Highlander A.JPG",
		171, 139,
		"GHH", "Green Highlander Hairwing",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "0",
		"Size;1/0@", "pd761245185.htm",
		"", 1,
		"ACF", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/Mini Puff Orange A.JPG",
		155, 47,
		"MP1", "Mini Puff Orange Size 4",
		"Size 4", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1434667508.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/Mini Puff Pink A.JPG",
		155, 79,
		"MP2", "Mini Puff Pink Size 4",
		"Size 4", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-2003386477.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/Borsk Fur Shrimp.JPG",
		140, 76,
		"FS", "Fur Shrimp Size 2",
		"Size 2", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1431494458.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/jiggie chartreuse 1.JPG",
		180, 67,
		"JCW", "Jiggy Chartreuse/White",
		"Size 1/0", "",
		"2.1", "0",
		"1", 1,
		"Pieces", "77",
		"Size;1/0@", "pd854188564.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/Crazy Charlie Pink A.JPG",
		155, 104,
		"Cr11", "Crazy Charlie Pink",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd-815326511.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/Crazy Charlie White A.JPG",
		155, 92,
		"CR21", "Crazy Charlie White",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd2003378669.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/Crazy Charlie Yellow A.JPG",
		155, 112,
		"CR31", "Crazy Charlie Yellow",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd1853272777.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/Pearl tubing A.JPG",
		180, 30,
		"PMT", "Mylar Tubing Pearl Med.",
		"1 Yard", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "44",
		"", "pd719972709.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/Silver Tubing A.JPG",
		180, 17,
		"SMT", "Silver Mylar Tubing Med.",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "44",
		"", "pd1155457563.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/royal stim.JPG",
		175, 130,
		"RDS1", "Royal Stimulator",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;10@", "pd1186905292.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/Golden Sofa Pillow B.jpg",
		200, 178,
		"GSPD1", "Golden Sofa Pillow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;6@", "pd306426264.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/Trico Spinner A 1.JPG",
		100, 88,
		"TR1", "Trico Spinner",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "15",
		"Size;20@", "pd-2081737360.htm",
		"", 1,
		"Spin", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/Emergent B Green sparkle pupa.jpg",
		110, 69,
		"ESPF1", "Emergent Sparkle Pupa",
		"Green", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;12@", "pd-1601561476.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/Black Bear Green Butt A.JPG",
		171, 115,
		"ASBBG", "Black Bear Green Butt",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "0",
		"Size;1/0@", "pd-634439511.htm",
		"", 1,
		"ACF", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/Black Woolybugger A1.JPG",
		125, 104,
		"WB0001", "Wooly Bugger Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;10@", "pd-358043436.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/BH wooly Bug Olive-Black A1.JPG",
		125, 52,
		"WB201", "BH Wooly Bugger Olive/Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;10@", "pd-1990904137.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/Matuka black B.jpg",
		220, 152,
		"SB125 4", "Matuka (Black)",
		"Black", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-1299855904.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/Bjackass.jpg",
		200, 125,
		"SB1011", "Jackass",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;6@", "pd212875100.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/Blittle brooktrout.jpg",
		200, 183,
		"SB115", "Little Brook Trout",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-626446404.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/Matuka olive B.jpg",
		220, 174,
		"SB122 4", "Matuka (Olive)",
		"Olive", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-778933898.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/Bgoldendemon.jpg",
		200, 115,
		"SB1051", "Golden Demon",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-1803127512.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/x caddis tan.JPG",
		140, 110,
		"xcaddis tan1", "X-Caddis Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd593901624.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/x caddis olive.JPG",
		120, 105,
		"xcaddis olive1", "x-Caddis Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-2029258379.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/BBlacknosedace.jpg",
		200, 200,
		"SB112 10", "Black Nose Dace",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd1163848651.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/squimp tan.JPG",
		155, 72,
		"Squimptan", "Squimp Tan Size 4",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1830082571.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/marabou shrimp white.JPG",
		155, 101,
		"MarabShrimpWhite", "Marabou Shrimp White Size #4",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-1269461129.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/deep candy pearl.JPG",
		180, 96,
		"DEEPCANPearl", "Deep Candy Pearl Size 2",
		"Approx 3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd2129657822.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/gummy minnow 1 thumb.JPG",
		195, 63,
		"GummyMinnow 2", "Gummy Minnow ",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "90",
		"Size;2@", "pd-787208211.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/crease shrimp thumb.JPG",
		155, 75,
		"Crease Shrimp 2", "Crease Fly Shrimp Tan With Weedguard",
		"", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "87",
		"Size;2@", "pd555974888.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/griff gnat.JPG",
		86, 91,
		"GN1", "Griffiths Gnat",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "10",
		"Size;18@", "pd-580292122.htm",
		"", 1,
		"DM", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/Rusty Spinner A 1.JPG",
		100, 75,
		"RS1", "Rusty Spinner",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "15",
		"Size;16@", "pd-1825391534.htm",
		"", 1,
		"Spin", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/Gray Midge B.jpg",
		100, 70,
		"GM1", "Gray Midge",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "10",
		"Size;20@", "pd2041809703.htm",
		"", 1,
		"DM", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/Peacock eye 1.JPG",
		100, 122,
		"Pea Eye", "Peacock Eye Feathers 10-12&quot; Long",
		"1 Dozen", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-1458229623.htm",
		"", 1,
		"Pea", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/Copy of Peacock swords 1.JPG",
		100, 136,
		"Pea Sword 1", "Peacock Swords / Pair",
		"1 Left &amp; 1 Right", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-964141093.htm",
		"", 1,
		"Pea", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/zonk 1.JPG",
		100, 75,
		"Zonk Black", "Zonkers",
		"3 Linear Feet Per Package", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "40",
		"Color;Black@", "pd1882447491.htm",
		"", 1,
		"Rabbitstri", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/pmd.JPG",
		120, 120,
		"PMD1", "Pale Morning Dun",
		"PMD", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;16@", "pd-1169012867.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/March Brown.JPG",
		110, 110,
		"MB1", "March Brown",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd-287714983.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/Chernobyl Hopper.JPG",
		140, 60,
		"CHER Hopp1", "Cherynobyl Hopper",
		"Small Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd1300554093.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/Copper J Red.jpg",
		150, 59,
		"CJR10", "Copper John Red",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd-196515255.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/Copper J Greenn.jpg",
		150, 56,
		"CJG10", "Copper John Green",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd-134636133.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/l red gray ghosl 1.JPG",
		175, 84,
		"RED Gray", "Red Gray Ghost Long Shank Size 4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd518299859.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/l Cardinelle 1.JPG",
		175, 125,
		"Car", "Cardinelle Long Shank # 4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd1147103396.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/Rabbit Black.JPG",
		180, 53,
		"RABBIT Black 2", "Rabbit Candy Black",
		"Size 2 is 3&quot; Long &amp; Size 2/0 is 4&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd1055443452.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/zonk 1.JPG",
		100, 75,
		"CCTZ1", "Cross Cut Zonkers",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "40",
		"Color;Black@", "pd1980629563.htm",
		"", 1,
		"Rabbitstri", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/images/nopicture.gif",
		55, 38,
		"DH", "Deer Hair Natural",
		"2 1/2&quot;X 2 1/2&quot;", "",
		"1.8", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd1730408363.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/images/nopicture.gif",
		55, 38,
		"DDH1", "Dyed Deer Hair",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Black@", "pd-218715695.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/images/nopicture.gif",
		55, 38,
		"BDDH1", "Deer Hair Bleached Then Dyed",
		"", "",
		"2.45", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Blue@", "pd1686137972.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/Olive Midge A.JPG",
		100, 52,
		"OM 22", "Olive Midge",
		"Size 22", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "10",
		"Size;22@", "pd-1031407800.htm",
		"", 1,
		"DM", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/Copper Johnn.jpg",
		150, 60,
		"CJ1", "Copper John",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd749918719.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/blue dun.JPG",
		106, 92,
		"BD1", "Blue Dun",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;12@", "pd844889476.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/Poxy Stone A.JPG",
		125, 68,
		"PBSN", "Poxy Biot Stonefly Nymph Size 8",
		"Size 8", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "97",
		"", "pd-1782791457.htm",
		"", 1,
		"NS", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/Flat tinsel.JPG",
		100, 87,
		"FMT 12", "Flat Mylar Tinsel 10 Yard Spools",
		"Danville&rsquo;s", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "52",
		"Size Tinsel;Medium 12@", "pd-346780654.htm",
		"", 1,
		"TW", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/peacock herl.JPG",
		100, 118,
		"Pea Herl", "Strung Peacock Herl",
		"", "",
		"2.15", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-119348928.htm",
		"", 1,
		"Pea", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/Marabou.JPG",
		100, 113,
		"Mar 11", "Strung Marabou 1 OZ.",
		"", "",
		"6.25", "0",
		"1", 1,
		"Pieces", "35",
		"Color;Black@", "pd-488463028.htm",
		"", 1,
		"MA", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/Flashabo 21.JPG",
		80, 263,
		"Flash1", "Flashabou",
		"", "",
		"3.55", "0",
		"1", 1,
		"Pieces", "47",
		"Flashabou;Black 6912@", "pd833304048.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/FireFly 92.JPG",
		80, 270,
		"Fire 12", "Fire Fly",
		"", "",
		"3.55", "0",
		"1", 1,
		"Pieces", "47",
		"Firefly;Black 12@", "pd-42428826.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/mara mudd white 1.JPG",
		150, 129,
		"MMW1", "Marabou Muddler Minnow White",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "66",
		"Size;2@", "pd-1188818341.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/Mirage 9.JPG",
		80, 328,
		"Mirage", "Mirage Sheet",
		"", "",
		"2.3", "0",
		"1", 1,
		"Pieces", "47",
		"", "pd464714233.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/Salt Flash 1.JPG",
		80, 308,
		"SWF1", "SaltWater Flashabou",
		"", "",
		"4.05", "0",
		"1", 1,
		"Pieces", "47",
		"Flashabou;Gold SW1602@", "pd1956787407.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/images/nopicture.gif",
		55, 38,
		"DOP1", "Dyed Over Pearl Flashabou",
		"", "",
		"4.1", "0",
		"1", 1,
		"Pieces", "47",
		"Flashabou;Black 6960P@", "pd-457015120.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/Suprem 2.JPG",
		80, 358,
		"SUp Hair Black 01", "Supreme Hair",
		"11&quot; Long", "",
		"2.55", "0",
		"1", 1,
		"Pieces", "50",
		"Supreme;Black 01@", "pd-1223927734.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/deer.JPG",
		125, 260,
		"Buck White", "Bucktails",
		"Average Length 11&quot;", "",
		"4.55", "0",
		"1", 1,
		"Pieces", "41",
		"Color;White@", "pd-1149419583.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/calf tail.JPG",
		150, 233,
		"CAT Chartreuse", "Calf Tails",
		"Average Length 11&quot;", "",
		"3.25", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Chartreuse@", "pd844550780.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/tie Fast.JPG",
		100, 169,
		"Tie Fast", "Tie Fast Knot Tyer",
		"", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1230673659.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/blood knot tyer.JPG",
		100, 184,
		"Bloodknottyer", "Blood Knot Tyer Vice",
		"", "",
		"8.35", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd223404449.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[312] = new Element(
		312, "assets/thumb/morrel1.JPG",
		200, 163,
		"Morell large", "Morell all foam Boxes",
		"With magnet clousers", "",
		"6.95", "0",
		"1", 1,
		"Pieces", "19",
		"Size;Large@", "pd-1361038229.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[313] = new Element(
		313, "assets/thumb/bug luggage 1.JPG",
		200, 160,
		"Baby bu luggage trout", "Trout Bug Luggage",
		"136 Clips", "",
		"17.95", "0",
		"1", 1,
		"Pieces", "19",
		"Size;Trout Box@", "pd-724870232.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[314] = new Element(
		314, "assets/thumb/Baby Luggage.jpg",
		200, 351,
		"FoxDry", "Fox Box Dry fly box",
		"60 Small Clips", "",
		"12.5", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-1640835532.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[315] = new Element(
		315, "assets/thumb/8 fly box.jpg",
		200, 168,
		"8 compart box", "Flambeau Styrene Boxes",
		"8 Compartment", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-150603902.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[316] = new Element(
		316, "assets/thumb/book smelt 1.JPG",
		150, 191,
		"B-950", "Smelt Fly Patterns",
		"", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-955289216.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[317] = new Element(
		317, "assets/thumb/Fairplay Leader.JPG",
		125, 171,
		"Fairleader6x", "Fairplay Leaders 7.5&rsquo;",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "25",
		"Fairplay Leaders;2.5 LB 6X@", "pd-2014071890.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[318] = new Element(
		318, "assets/thumb/333 Leaders.JPG",
		150, 200,
		"333 Leaders1", "Cortland 333 Leaders 7.5&rsquo;",
		"", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "25",
		"333 Leaders;10 LB 2X@", "pd-986007156.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[319] = new Element(
		319, "assets/thumb/para sulpher.JPG",
		105, 89,
		"DP02 16", "Sulpher Parachute",
		"Dorthea", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd-810597942.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[320] = new Element(
		320, "assets/thumb/cdc 1.JPG",
		150, 117,
		"CDC1", "CDC",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Black@", "pd-478969301.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[321] = new Element(
		321, "assets/thumb/inner white 1.JPG",
		155, 69,
		"IFW", "Inner Flash White",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"Size;1/0@", "pd573590230.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[322] = new Element(
		322, "assets/thumb/inner brown 1.JPG",
		155, 68,
		"IFWB", "Inner Flash White/Brown Size 1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd-1919251557.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[323] = new Element(
		323, "assets/thumb/inner chart 1.JPG",
		155, 74,
		"IFWC", "Inner Flash White/Chartreuse Size 1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd-1712298175.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[324] = new Element(
		324, "assets/images/nopicture.gif",
		55, 38,
		"FlyFur Black", "Fly Fur",
		"10&quot;x8&quot;", "",
		"2.85", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Black@", "pd1744087567.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[325] = new Element(
		325, "assets/thumb/dark cahill wet.JPG",
		120, 72,
		"WETDKCAHILL1", "Dark Cahill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "107",
		"Size;12@", "pd-1770088779.htm",
		"", 1,
		"wet fly", "0",
		 0)
	
		Entry[326] = new Element(
		326, "assets/thumb/Golden Head.JPG",
		100, 194,
		"GoldHead", "Golden Pheasant Head Complete",
		"Tippets &amp; Crest", "",
		"7.65", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd392982096.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[327] = new Element(
		327, "assets/thumb/Rabbit Candy White.JPG",
		180, 77,
		"Rabbit White 2", "Rabbit Candy White",
		"Size 2 is 3&quot; Long &amp; Size 2/0 is 4&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd20631025.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[328] = new Element(
		328, "assets/thumb/Rabbit Candy Olive.JPG",
		180, 67,
		"Rabbit Olive 2", "Rabbit Candy Olive (Mummichog)",
		"Size 2 is 3&quot; Long &amp; Size 2/0 is 4&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd173491981.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[329] = new Element(
		329, "assets/thumb/cowens 1.JPG",
		145, 103,
		"CBCW", "Cowen&rsquo;s Baitfish Chartreuse/White Size 2/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd714762729.htm",
		"0::12::17;0::12::17;0::12::17;", 1,
		"SWB", "0",
		 0)
	
		Entry[330] = new Element(
		330, "assets/thumb/big i marabou 1.JPG",
		155, 89,
		"BEB", "Big Eye Baitfish Marabou Gray/White",
		"Size 1/0", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd-294841580.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[331] = new Element(
		331, "assets/thumb/cape cod 1.JPG",
		155, 64,
		"CCSE", "Cape Cod Sand Eel Size 2",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd-712900766.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[332] = new Element(
		332, "assets/thumb/Econe Dyed Saddle Black.JPG",
		120, 259,
		"EDSB1", "Economy Dyed Saddle Patch",
		"", "",
		"12.5", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Black@", "pd1919827040.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[333] = new Element(
		333, "assets/thumb/saddle prem.JPG",
		155, 213,
		"DyedGrizSaddle chartreuse", "Dyed Grizzly Sddle Patches",
		"Premium grade saddles with long narrow feathers", "",
		"24.95", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Grizzly Dyed Chartreuse@", "pd1470211325.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[334] = new Element(
		334, "assets/thumb/shrimp tan 1.JPG",
		155, 90,
		"shrimp tan", "Shrimp Tan Epoxy Back Size 2",
		"Epoxy Back", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd1302420907.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[335] = new Element(
		335, "assets/thumb/Natural Brown Hen Cape.JPG",
		125, 283,
		"NBHC", "Natural Brown Hen Capes",
		"", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "61",
		"", "pd-878065711.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[336] = new Element(
		336, "assets/thumb/Icelandic.JPG",
		150, 241,
		"ISH15", "Icelandic Sheep Hair",
		"", "",
		"3.25", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Whitlocks Turqouise@", "pd1118443111.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[337] = new Element(
		337, "assets/thumb/CDC Feather Tool.JPG",
		100, 336,
		"CDCWT", "CDC Feather Winding Tool",
		"", "",
		"10.8", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd1654053082.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[338] = new Element(
		338, "assets/thumb/Grif Supreme Bob.JPG",
		100, 176,
		"Grif Supreme Bob", "Griffin Supreme Ceramic Bobbin",
		"", "",
		"12.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd1235063448.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[339] = new Element(
		339, "assets/thumb/Ultra Chenille.JPG",
		100, 156,
		"ULTRA CHEN1", "Ultra Chenille",
		"", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "45",
		"Color;Black@", "pd-1450698106.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[340] = new Element(
		340, "assets/thumb/partridge pack.JPG",
		100, 172,
		"Hun Natural", "Hungarian Partridge",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Natural@", "pd-680513103.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[341] = new Element(
		341, "assets/thumb/teaL 1.JPG",
		150, 149,
		"Teal Pk.", "Teal Flanks",
		"3&quot;x5&quot; Bag", "",
		"1.4", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd839411405.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[342] = new Element(
		342, "assets/thumb/cin turkey tail shorts 1.JPG",
		150, 172,
		"Cin Turkey", "Cinnamon Tipped Turkey Tail Shorts",
		"4/Pack", "",
		"2.15", "0",
		"1", 1,
		"Pieces", "39",
		"", "pd-739099197.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[343] = new Element(
		343, "assets/thumb/Para Post.JPG",
		100, 161,
		"Para White", "Para Post Wing",
		"Use it for Posts on Parachute Flies", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "49",
		"Color;White@", "pd-1797585495.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[344] = new Element(
		344, "assets/thumb/20 Compartment Box.JPG",
		100, 204,
		"20 Box", "20 Compartment Hook Box",
		"", "",
		"5.75", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd1744460076.htm",
		"", 1,
		"Hook Boxes", "0",
		 0)
	
		Entry[345] = new Element(
		345, "assets/thumb/Trailing Shuck Tan.JPG",
		100, 167,
		"Trail Shuck1", "Trailing Shuck",
		"", "",
		"3.25", "0",
		"1", 1,
		"Pieces", "49",
		"Color;Clear 1@", "pd-954330310.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[346] = new Element(
		346, "assets/images/nopicture.gif",
		55, 38,
		"Hare1", "Hares mask",
		"", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Natural@", "pd-1972716826.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[347] = new Element(
		347, "assets/thumb/Antron.JPG",
		100, 83,
		"Antron1", "Antron Yarn",
		"", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Burnt Orange@", "pd1679988050.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[348] = new Element(
		348, "assets/thumb/V Rib.JPG",
		100, 83,
		"V-Rib6", "V-Rib Medium",
		"", "",
		"1.2", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Clear@", "pd1765123229.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[349] = new Element(
		349, "assets/thumb/Silver Pheasant.jpg",
		200, 150,
		"Silver Skin", "Silver Pheasant Skin",
		"Grade #2", "",
		"35", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd1429041300.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[350] = new Element(
		350, "assets/thumb/gold pheasant 1.JPG",
		200, 275,
		"Gold#2notw", "Golden Pheasant Skin Less Tail &amp; Head",
		"", "",
		"6.4", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-880830238.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[351] = new Element(
		351, "assets/thumb/pheasant tail whole 1.JPG",
		150, 401,
		"CPT", "Complete Ringneck Pheasant Tail",
		"", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "38",
		"", "pd1130066400.htm",
		"", 1,
		"PT", "0",
		 0)
	
		Entry[352] = new Element(
		352, "assets/thumb/Grif Rotating Hackle Pliers.JPG",
		100, 199,
		"Grif Rot Hack", "Griffin Rotating Hackle Pliers",
		"", "",
		"9.2", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-166881286.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[353] = new Element(
		353, "assets/thumb/Grif Pee Wee Ceramic.JPG",
		100, 173,
		"Grif Pee", "Griffin Peewee Ceramic Bobbin",
		"", "",
		"12.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-961878344.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[354] = new Element(
		354, "assets/thumb/Ice Ultimate Scissors.JPG",
		100, 189,
		"Ice Ult.", "Ice Ultimate Scissors",
		"", "",
		"19.25", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-893252698.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[355] = new Element(
		355, "assets/thumb/Hi-Vis 1.JPG",
		125, 205,
		"Hi-Vis White", "Hi-Vis",
		"Use it for Posts on Parachute Flies", "",
		"2.35", "0",
		"1", 1,
		"Pieces", "49",
		"Color;White@", "pd1332326980.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[356] = new Element(
		356, "assets/thumb/Goose Biots Stripped.JPG",
		100, 131,
		"GBIOTS1", "Goose Biots",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "39",
		"Color;Amber@", "pd-1902498618.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[357] = new Element(
		357, "assets/thumb/Epoxy Silverside (3).JPG",
		180, 67,
		"EPOX SIL", "Epoxy Silverside",
		"Size 2 3&quot; Long.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd2025938014.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[358] = new Element(
		358, "assets/thumb/Scotts Shrimp.JPG",
		155, 61,
		"SCOTT SHRIMP", "Scotts Shrimp",
		"Size 2", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-1338376630.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[359] = new Element(
		359, "assets/thumb/BH Flash Stone Nymph.JPG",
		125, 76,
		"BHSTF1", "Bead Head Flashback Stonefly Nymph",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "97",
		"Size;10@", "pd1211869024.htm",
		"", 1,
		"NS", "0",
		 0)
	
		Entry[360] = new Element(
		360, "assets/thumb/tabory squid 1.JPG",
		155, 60,
		"TGS", "Tabory&rsquo;s Glow Squid Size 2/0",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd1624069841.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[361] = new Element(
		361, "assets/thumb/san juan worm red.JPG",
		120, 33,
		"SANWORMRED1", "San Juan Worm Red",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "107",
		"Size;12@", "pd1840080158.htm",
		"", 1,
		"wet fly", "0",
		 0)
	
		Entry[362] = new Element(
		362, "assets/thumb/wd40 olive.JPG",
		100, 47,
		"WD401", "WD-40 Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;18@", "pd-1350692086.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[363] = new Element(
		363, "assets/thumb/legs stick 1.JPG",
		150, 283,
		"KPT1", "Legs On A Stick",
		"Use on Hoppers and Cricket  Patterns For The Legs", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "38",
		"Color;Natural@", "pd1652268244.htm",
		"", 1,
		"PT", "0",
		 0)
	
		Entry[364] = new Element(
		364, "assets/thumb/Starling Skin.JPG",
		150, 302,
		"Star", "Starling Skin",
		"", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-888741344.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[365] = new Element(
		365, "assets/thumb/Keough.JPG",
		120, 237,
		"Keough5", "Keough Dry Fly Hackle Tyers Grade",
		"", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "59",
		"Color;Grizzly@", "pd1971787086.htm",
		"", 1,
		"Keough", "0",
		 0)
	
		Entry[366] = new Element(
		366, "assets/thumb/1-4 Scud Back.JPG",
		100, 155,
		"1/4 Scud", "1/4 Scud Back Clear",
		"", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "49",
		"", "pd-551571760.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[367] = new Element(
		367, "assets/thumb/Z-Poxy.JPG",
		100, 224,
		"Z-Poxy", "Z-Poxy 5 Minute",
		"", "",
		"11.25", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd1482943452.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[368] = new Element(
		368, "assets/thumb/Zap A Gap.JPG",
		100, 223,
		"ZAPGAP", "Zap-A-Gap",
		"", "",
		"3.6", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-1140415126.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[369] = new Element(
		369, "assets/thumb/Zip Kicker.JPG",
		80, 141,
		"ZIP", "Zip Kicker",
		"", "",
		"7.2", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd872575400.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[370] = new Element(
		370, "assets/thumb/watershed.JPG",
		100, 180,
		"Water Shed", "Water Shed",
		"", "",
		"3.65", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd1639402548.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[371] = new Element(
		371, "assets/thumb/Quill body.JPG",
		100, 172,
		"QB1", "Quill Body",
		"", "",
		"3.45", "0",
		"1", 1,
		"Pieces", "49",
		"Color;Baetis Olive@", "pd-684237438.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[372] = new Element(
		372, "assets/thumb/goose shoulder 1.JPG",
		150, 228,
		"S Goose Sh White", "Select Goose Shoulder",
		"6 Per. Pack", "",
		"2.85", "0",
		"1", 1,
		"Pieces", "39",
		"Color;White@", "pd-1097228027.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[373] = new Element(
		373, "assets/thumb/turkey flats.JPG",
		150, 140,
		"TFlat Dun", "Turkey Flats",
		"1/4 OZ.", "",
		"2.15", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Dyed Dun@", "pd1631151378.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[374] = new Element(
		374, "assets/thumb/estaz 1.JPG",
		100, 90,
		"Est Fuchsia", "Estaz 3 Yards",
		"For Saltwater &amp; Larger flies", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "45",
		"Color;Fuchsia@", "pd-1424284087.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[375] = new Element(
		375, "assets/thumb/bronze mallard 1.JPG",
		150, 222,
		"Bronz Mall", "Bronze Mallard",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd1648688902.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[376] = new Element(
		376, "assets/thumb/Part Skin.JPG",
		200, 313,
		"Hung Skin", "Hungarian Partridge Skin #1",
		"", "",
		"27.95", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-1159244636.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[377] = new Element(
		377, "assets/thumb/foam ant.JPG",
		72, 62,
		"FA1", "Foam Ant Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;14@", "pd1213576862.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[378] = new Element(
		378, "assets/thumb/Gotcha Pearl.JPG",
		155, 108,
		"GOTCHAP2", "Gotcha Pearl",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd-728588856.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[379] = new Element(
		379, "assets/thumb/Bone Bunny White.JPG",
		155, 102,
		"BUNNYW1", "Bonefish Bunny White",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd-1025279404.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[380] = new Element(
		380, "assets/thumb/ah anchovy 1.JPG",
		155, 80,
		"Angelhairan2", "Angel Hair Bay Anchovy",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd-846554513.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[381] = new Element(
		381, "assets/thumb/Creat0022 (2).JPG",
		145, 78,
		"HotflMinnow", "Hot Flash Minnow Size 2",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd1080109144.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[382] = new Element(
		382, "assets/thumb/permit 1.JPG",
		250, 211,
		"umppermitasst", "Permit Selection",
		"Packaged in boxes of New Zealand hardwoods with foam inserts and Magnetic Clousers.", "",
		"99.95", "0",
		"1", 1,
		"Pieces", "106",
		"", "pd663892987.htm",
		"", 1,
		"Umpqua Fly", "0",
		 0)
	
		Entry[383] = new Element(
		383, "assets/images/nopicture.gif",
		55, 38,
		"SEY White", "Sparkle Emerger Yarn",
		"", "",
		"2.4", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Clear White@", "pd-1600499343.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[384] = new Element(
		384, "assets/images/nopicture.gif",
		55, 38,
		"SiliSkin BellyWhite", "Sili Skin",
		"", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "55",
		"Sili Skin;Belly White@", "pd59710096.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[385] = new Element(
		385, "assets/thumb/Bone Bunny Brown.JPG",
		155, 91,
		"BUNNYB1", "Bonefish Bunny Brown",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;4@", "pd-214924168.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[386] = new Element(
		386, "assets/thumb/Stripped Peacock.JPG",
		100, 163,
		"STRIPPED", "Stripped Peacock Quill",
		"1/Pack", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "36",
		"", "pd-1808334382.htm",
		"", 1,
		"Pea", "0",
		 0)
	
		Entry[387] = new Element(
		387, "assets/thumb/Snowshoe Rabbit Feet.JPG",
		100, 166,
		"SRF dk. dun", "Snowshoe Rabbit Feet",
		"1/Pair", "",
		"4.4", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Dk. Dun@", "pd-262549782.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[388] = new Element(
		388, "assets/thumb/Ant Bodies 1.jpg",
		150, 208,
		"superant1", "Super Ants",
		"Black", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "54",
		"Sizes;#10/12@", "pd-1136662092.htm",
		"", 1,
		"anthopper", "0",
		 0)
	
		Entry[389] = new Element(
		389, "assets/thumb/Book New England.JPG",
		150, 236,
		"BOOKNEE", "Flyfisher&rsquo;s Guide To NORTHERN NEW ENGLAND",
		"Vermont, New Hampshire &amp; Maine", "",
		"26.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-130815186.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[390] = new Element(
		390, "assets/thumb/Shore.JPG",
		150, 211,
		"FFSWSL", "Fly Fishing The Saltwater Shore Line",
		"Ed Mitchell", "",
		"32.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-897894952.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[391] = new Element(
		391, "assets/thumb/Samadou.JPG",
		125, 219,
		"Samadou", "Samadou Fly Dryer",
		"", "",
		"4.99", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd872640454.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[392] = new Element(
		392, "assets/thumb/Ice Off.JPG",
		125, 225,
		"LIceoff", "Loon Stanley&rsquo;s Ice-Off",
		"", "",
		"5", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1140815596.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[393] = new Element(
		393, "assets/thumb/putty weight.JPG",
		100, 104,
		"puttyweight", "Angling Evolutions Putty Weight",
		"Soft Non-toxic tungsten weight.", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd710567266.htm",
		"", 1,
		"Indi.", "0",
		 0)
	
		Entry[394] = new Element(
		394, "assets/images/nopicture.gif",
		55, 38,
		"RST", "Red Squirrel Tail",
		"", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-975891872.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[395] = new Element(
		395, "assets/thumb/dyed squirrel.JPG",
		150, 252,
		"GST1", "Gray Squirrel Tail Natural &amp; Dyed",
		"", "",
		"2", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Black@", "pd754565006.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[396] = new Element(
		396, "assets/images/nopicture.gif",
		55, 38,
		"Hennecks1", "Hen Necks",
		"For wings on dry flies and spinners.", "",
		"4.5", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Dyed Dun@", "pd-93692811.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[397] = new Element(
		397, "assets/thumb/Hen Pheasant Skin.jpg",
		200, 304,
		"HenPheasant", "Hen Pheasant Skin",
		"", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "33",
		"", "pd-835034009.htm",
		"", 1,
		"BS", "0",
		 0)
	
		Entry[398] = new Element(
		398, "assets/thumb/System Reel.jpg",
		200, 219,
		"System1456", "Scientific Anglers System 1 Reel",
		"For line sizes 4,5 and 6", "",
		"64.95", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd-65347357.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[399] = new Element(
		399, "assets/thumb/larva lace 1.JPG",
		100, 79,
		"LALABODY1", "Larva Lace Body Material Hollow",
		"", "",
		"1.55", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Black@", "pd-388458560.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[400] = new Element(
		400, "assets/thumb/EP Fibers.JPG",
		110, 301,
		"EP White", "Enricos Sea Fibers",
		"EP-Fibers", "",
		"5.75", "0",
		"1", 1,
		"Pieces", "50",
		"Color;White@", "pd1971303097.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[401] = new Element(
		401, "assets/thumb/Sheep Fleece.JPG",
		125, 139,
		"SF Black", "Sheep Fleece",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Black@", "pd-1136668126.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[402] = new Element(
		402, "assets/images/nopicture.gif",
		55, 38,
		"NEWCHEN bk pearl", "New Age Chenille",
		"3 Yards/Pack", "",
		"2", "0",
		"1", 1,
		"Pieces", "45",
		"New Age Chenille;Black Pearl@", "pd-1117516689.htm",
		"", 1,
		"Chenil", "0",
		 0)
	
		Entry[403] = new Element(
		403, "assets/images/nopicture.gif",
		55, 38,
		"9Trout 7x", "9&rsquo; Umpqua Trout Leaders",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;2 LB 7X@", "pd1333754917.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[404] = new Element(
		404, "assets/images/nopicture.gif",
		55, 38,
		"7.5 Leaders 6x", "7 1/2&rsquo; Umpqua Trout Leaders",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;3 LB 6X@", "pd-249449765.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[405] = new Element(
		405, "assets/images/nopicture.gif",
		55, 38,
		"10 strike", "10&rsquo; Strike Indi-Taper Leaders",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;4 LB 5X@", "pd-1866407807.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[406] = new Element(
		406, "assets/thumb/Striper Leader.JPG",
		125, 161,
		"10Striper", "10&rsquo; Striper Leader",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;10 LB@", "pd1599315607.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[407] = new Element(
		407, "assets/thumb/Deceiver Leader.JPG",
		125, 166,
		"912 fluor1", "9 1/2&rsquo; Umpqua Fluorocarbon Deceiver Leader",
		"", "",
		"7.5", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;3 LB 6X@", "pd-1519902051.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[408] = new Element(
		408, "assets/thumb/Fluorcarbon Tippet.JPG",
		125, 130,
		"Fl Tippet 7.5X", "Umqua Fluorocarbon Tippet",
		"25 Meters", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;1 LB 7.5X@", "pd1138597395.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[409] = new Element(
		409, "assets/thumb/Umpqua Tippet.JPG",
		125, 129,
		"Tippet 7.5X", "Umpqua Tippet",
		"30 Meters", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;1 LB 7.5X@", "pd672362517.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[410] = new Element(
		410, "assets/thumb/GlideBox & Dressing.JPG",
		125, 215,
		"GlideDre&Box", "Glide Line Dressing &amp; Box",
		"", "",
		"8.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1505147763.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[411] = new Element(
		411, "assets/thumb/Glide Line Dressing.JPG",
		125, 240,
		"Glide", "Glide Line Dressing",
		"", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-493006461.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[412] = new Element(
		412, "assets/thumb/Leader Strait.JPG",
		100, 168,
		"LeadStrait", "Umpqua Leader Straightner",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd1754511295.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[413] = new Element(
		413, "assets/thumb/Sm. Streamer Box Umpq.JPG",
		200, 302,
		"UmpqStreamer", "Umpqua Streamer Box",
		"4 3/4&quot; x 3&quot; x 1&quot;", "",
		"4.5", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-986873851.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[414] = new Element(
		414, "assets/thumb/Stonefly Box.JPG",
		150, 232,
		"StoneBox", "Umpqua Stonefly Box",
		"", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-1150101061.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[415] = new Element(
		415, "assets/thumb/2x4 Box Umpqua.JPG",
		150, 297,
		"2x4 Box", "Umpqua 2x4 Box",
		"6&quot; x 3&quot; x1&quot;", "",
		"4", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-409607583.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[416] = new Element(
		416, "assets/thumb/Bighorn Strike.JPG",
		100, 147,
		"Bighorn Small", "Bighorn Strike Indicators",
		"Yellow", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "21",
		"Size;Small@", "pd552596453.htm",
		"", 1,
		"Indi.", "0",
		 0)
	
		Entry[417] = new Element(
		417, "assets/thumb/Pads Glide.JPG",
		110, 165,
		"Felt", "Glide Replacement Felt Squares",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1146145426.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[418] = new Element(
		418, "assets/thumb/Drews Speed Loop.JPG",
		100, 164,
		"DrewSpeed clear", "Drews Speed Loop",
		"Clear Line 3-7", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "22",
		"Color;Clear@", "pd-462419878.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[419] = new Element(
		419, "assets/thumb/ShimazDry.JPG",
		100, 192,
		"ShimDry", "Shimazaki Dry Shake",
		"", "",
		"7.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1924185594.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[420] = new Element(
		420, "assets/thumb/Palsa Pinchon.JPG",
		100, 159,
		"Palsa Orange", "Palsa Pinch On Strike Indicators",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "21",
		"Color;Orange@", "pd220654498.htm",
		"", 1,
		"Indi.", "0",
		 0)
	
		Entry[421] = new Element(
		421, "assets/thumb/sierra 1.JPG",
		225, 126,
		"Okuma Sierra Reel45", "Okuma Sierra Fly Reel",
		"Available in two models 4/5 &amp; 5/6", "",
		"43.25", "0",
		"1", 1,
		"Pieces", "24",
		"Reel Sizes;S 4/5@", "pd395127246.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[422] = new Element(
		422, "assets/thumb/Wooly Bugger Pack.JPG",
		100, 208,
		"Wooly Pack1", "Whiting Wooly Bugger Pack",
		"", "",
		"9", "0",
		"1", 1,
		"Pieces", "62",
		"Color;Black@", "pd2069430970.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[423] = new Element(
		423, "assets/thumb/Quill Cape.JPG",
		120, 228,
		"Quill Cape1", "Whiting Quill Body Cape",
		"", "",
		"10.25", "0",
		"1", 1,
		"Pieces", "62",
		"Color;Light Ginger@", "pd2069869803.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[424] = new Element(
		424, "assets/thumb/American Rooster Cape.JPG",
		120, 243,
		"AmerRoosCape black", "Whiting American Rooster Cape",
		"Bronze Grade", "",
		"15", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Black@", "pd1279450157.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[425] = new Element(
		425, "assets/thumb/American Rooster Bronze.JPG",
		120, 243,
		"WhitAmerSaddlroost Grizzly", "Whiting American Rooster Saddle",
		"Bronze Grade", "",
		"10", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Grizzly@", "pd-1141550897.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[426] = new Element(
		426, "assets/thumb/14 Midge Saddle.JPG",
		110, 438,
		"14saddle Grizzly", "1/4 Midge Saddle",
		"Silver Grade", "",
		"38.95", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Grizzly@", "pd-14415940.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[427] = new Element(
		427, "assets/thumb/14 14&Smaller Saddle.JPG",
		110, 390,
		"14 saddle14- Black", "Whiting 1/4 Saddle #14 &amp; Smaller",
		"Silver Grade", "",
		"25", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Black@", "pd-411224343.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[428] = new Element(
		428, "assets/thumb/Whiting hen cape.JPG",
		120, 257,
		"Whithencape Brown", "Whiting Hen Hackle",
		"Silver Grade", "",
		"17.5", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Brown@", "pd-372857097.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[429] = new Element(
		429, "assets/thumb/COQneck.JPG",
		120, 251,
		"COQDEZNeck Dyed Dun", "Whiting COQ DE Leon Rooster Cape",
		"Silver Grade", "",
		"15", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Dyed Dun@", "pd1756104570.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[430] = new Element(
		430, "assets/thumb/1-2 Saddle.JPG",
		120, 369,
		"Whit1-2saddlegold Brown", "Whiting 1/2 Saddle",
		"Gold Grade", "",
		"34.5", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Brown@", "pd-1989012519.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[431] = new Element(
		431, "assets/thumb/COQ Saddle.JPG",
		120, 235,
		"COQSADDLE Badger Dyed Dun", "COQ DE LEON Rooster Saddle",
		"Silver Grade", "",
		"20", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Badger Dyed Dun@", "pd-437361212.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[432] = new Element(
		432, "assets/thumb/taffs.JPG",
		102, 58,
		"CNTAFF 16", "Taff&rsquo;s Cased Caddis",
		"Weighted", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;16@", "pd126851600.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[433] = new Element(
		433, "assets/thumb/Hen Back1.JPG",
		125, 169,
		"HenBack", "Speckled Hen Back",
		"", "",
		"6.25", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd801311516.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[434] = new Element(
		434, "assets/thumb/loon bio.JPG",
		100, 116,
		"Loon Bio", "Loon Biostrike",
		"Yellow", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "21",
		"", "pd55563946.htm",
		"", 1,
		"Indi.", "0",
		 0)
	
		Entry[435] = new Element(
		435, "assets/thumb/reel lube.JPG",
		100, 252,
		"loonlube", "Loon Reel Lube",
		"", "",
		"4", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1343918964.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[436] = new Element(
		436, "assets/thumb/leader tote.JPG",
		100, 167,
		"leader tote", "Leader Tote",
		"", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1343694574.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[437] = new Element(
		437, "assets/images/nopicture.gif",
		55, 38,
		"CortFlyBox SmallNubb", "Cortland Flat &amp; Nubby Tack Fly Box",
		"Small", "",
		"6.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1437621964.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[438] = new Element(
		438, "assets/thumb/Mud Loon.JPG",
		100, 106,
		"Loon Mud", "Loon Snake River Mud",
		"Sinks leaders and flies", "",
		"4.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd2106314020.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[439] = new Element(
		439, "assets/thumb/tye jr.JPG",
		100, 154,
		"tyerjr.", "Ty-Rite Jr. for midges",
		"", "",
		"8.1", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-844286096.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[440] = new Element(
		440, "assets/thumb/tyesr.JPG",
		100, 151,
		"tyersr.", "Ty-Rite Sr.",
		"", "",
		"7.2", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-187651298.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[441] = new Element(
		441, "assets/thumb/gink.JPG",
		100, 213,
		"Gink", "Gink",
		"Dry Fly Dressing", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd947928700.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[442] = new Element(
		442, "assets/thumb/dupl hack thomp.JPG",
		100, 72,
		"Thompduplexhackle", "Thompson Duplex Hackle Pliers",
		"", "",
		"6", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd596752650.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[443] = new Element(
		443, "assets/thumb/18 compartment.JPG",
		125, 209,
		"18 compartment", "18 compartment Flambeau Styrene Boxes.",
		"10&quot; x 7&quot; x 1 13/16&quot;", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-1266088670.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[444] = new Element(
		444, "assets/thumb/max tip desp.JPG",
		145, 227,
		"MaxTipDispCham", "Maxima &quot;Chameleon&quot; Dispenser 1x Thru 7X",
		"", "",
		"21.75", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd-1627542996.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[445] = new Element(
		445, "assets/thumb/Days Worth Fly Box.JPG",
		165, 220,
		"Dayworthflybox", "Days Worth Fly Box",
		"", "",
		"11.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd2113260602.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[446] = new Element(
		446, "assets/thumb/Silcone Mucilin.JPG",
		100, 100,
		"SiliconeMucilin", "Silicone Mucilin Line Dressing",
		"", "",
		"3.99", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1458444833.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[447] = new Element(
		447, "assets/thumb/Softex.JPG",
		100, 145,
		"Softex", "Softex",
		"", "",
		"9.55", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd629221851.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[448] = new Element(
		448, "assets/images/nopicture.gif",
		55, 38,
		"MetzMicro1", "Metz #1 Microbarb Saddle",
		"", "",
		"35.25", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Brown@", "pd1634307861.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[449] = new Element(
		449, "assets/images/nopicture.gif",
		55, 38,
		"MetzSaddle#21", "Metz Saddle #2",
		"", "",
		"16.25", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Black@", "pd-1856581113.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[450] = new Element(
		450, "assets/thumb/oak 1.JPG",
		150, 333,
		"MetzOzarkNatural", "Turkey Ozark Oak Mottled",
		"Natural", "",
		"5.2", "0",
		"1", 1,
		"Pieces", "39",
		"", "pd1018077588.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[451] = new Element(
		451, "assets/thumb/Tippet t.JPG",
		100, 201,
		"TippetT", "Tippet T",
		"", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-1794512039.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[452] = new Element(
		452, "assets/thumb/Brooch pin.JPG",
		100, 64,
		"Salmon Brooch", "Salmon Fly Brooch Pin",
		"", "",
		"3.35", "0",
		"1", 1,
		"Pieces", "27",
		"Size;2@", "pd-381312191.htm",
		"", 1,
		"Brooch Pin", "0",
		 0)
	
		Entry[453] = new Element(
		453, "assets/thumb/Fluoro fiber.JPG",
		100, 363,
		"Flofiber1", "Fluoro Fibre",
		"", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Chartreuse@", "pd1459792595.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[454] = new Element(
		454, "assets/thumb/trout s new 1.JPG",
		150, 230,
		"TroutStreams", "Trout Streams Of Southern New England",
		"", "",
		"18.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-1292933583.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[455] = new Element(
		455, "assets/thumb/angel hair 1.JPG",
		75, 298,
		"AngelH5", "Angel Hair",
		"", "",
		"2.7", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Gold@", "pd1609980871.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[456] = new Element(
		456, "assets/images/nopicture.gif",
		55, 38,
		"SlinkyFib1", "Slinkefiber",
		"", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Black@", "pd549245245.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[457] = new Element(
		457, "assets/images/nopicture.gif",
		55, 38,
		"Head", "Griffin&rsquo;s Thin Head Cement",
		"1 Oz.", "",
		"5.2", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-1438201602.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[458] = new Element(
		458, "assets/images/nopicture.gif",
		55, 38,
		"M9672 10", "Mustad 9672",
		"100/Pack", "",
		"10.5", "0",
		"1", 1,
		"Pieces", "29",
		"Size;10@", "pd1191120732.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[459] = new Element(
		459, "assets/thumb/ss keel.JPG",
		100, 159,
		"M7966s 2", "Mustad 79666",
		"10/Pack", "",
		"5.64", "0",
		"1", 1,
		"Pieces", "29",
		"Size;2@", "pd-1623195639.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[460] = new Element(
		460, "assets/thumb/m clips.JPG",
		100, 167,
		"Msnap 3", "Mustad Snap Hooks",
		"12/Package", "",
		"2.45", "0",
		"1", 1,
		"Pieces", "22",
		"Size;3@", "pd-871593307.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[461] = new Element(
		461, "assets/thumb/double bunny olive white.JPG",
		230, 118,
		"DoublBunolive 4", "Double Bunny Olive",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-26752040.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[462] = new Element(
		462, "assets/thumb/purple flash a bugger.JPG",
		125, 80,
		"Purplewooly", "Wooly Bugger Purple",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;6@", "pd-1591732273.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[463] = new Element(
		463, "assets/thumb/para hares ear.JPG",
		152, 102,
		"Parahare1", "Parachute Hares Ear",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;14@", "pd-1431739716.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[464] = new Element(
		464, "assets/thumb/whit sheep sunfish.JPG",
		200, 130,
		"WhitSunfish1", "Whitlocks Sheep Sunfish",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;2@", "pd-271178263.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[465] = new Element(
		465, "assets/thumb/whit sheep shad.JPG",
		200, 83,
		"WhitSheepshad1", "Whitlocks Sheep Shad",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;2@", "pd1170472724.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[466] = new Element(
		466, "assets/thumb/para adams.JPG",
		139, 87,
		"Paraadams1", "Parachute Adams",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;14@", "pd1998048315.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[467] = new Element(
		467, "assets/thumb/fuzz shad.JPG",
		200, 176,
		"FuzzShad1", "Fuzzabou Shad",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;1/0@", "pd-1608294804.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[468] = new Element(
		468, "assets/thumb/shinabou shad.JPG",
		200, 144,
		"ShinShad1", "Shinabou Shad",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;1/0@", "pd-391992008.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[469] = new Element(
		469, "assets/thumb/shinabou shiner.JPG",
		200, 132,
		"ShinShiner1", "Shinabou Shiner",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;1/0@", "pd-534847292.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[470] = new Element(
		470, "assets/thumb/hares sculpin olive.JPG",
		200, 72,
		"Haresculpin1", "Hare Sculpin",
		"Olive/White", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-1097480944.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[471] = new Element(
		471, "assets/thumb/hex nymph.JPG",
		120, 86,
		"Hexburk", "Hexaginia Burks Size 6",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"", "pd-504775735.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[472] = new Element(
		472, "assets/thumb/para olive quill.JPG",
		120, 92,
		"Paraoliveq1", "Parachute Olive Quill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd-993800588.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[473] = new Element(
		473, "assets/thumb/para red quill.JPG",
		100, 83,
		"pararedq1", "Parachute Red Quill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd1084738241.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[474] = new Element(
		474, "assets/thumb/hex dry.jpg",
		100, 104,
		"Hexdry", "Hexaginia",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;6@", "pd312750301.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[475] = new Element(
		475, "assets/thumb/cdc rusty biot spinner.JPG",
		80, 61,
		"cdcrustspinn1", "CDC Rusty Spinner",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "15",
		"Size;14@", "pd-1987540853.htm",
		"", 1,
		"Spin", "0",
		 0)
	
		Entry[476] = new Element(
		476, "assets/thumb/whit olive damsel.JPG",
		120, 46,
		"olivdamwhit1", "Olive Damsel Whitlocks",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "96",
		"Size;10@", "pd-873948804.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[477] = new Element(
		477, "assets/thumb/overly olive.JPG",
		102, 84,
		"Overlyolive1", "Overly Spotlight Emerger Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd-1158006456.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[478] = new Element(
		478, "assets/thumb/overly sulpher.JPG",
		121, 84,
		"overltsulpher", "Overly Spotlight Emerger Sulpher",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd458991173.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[479] = new Element(
		479, "assets/thumb/overly tan.JPG",
		123, 97,
		"overly Tan1", "Overly Spotlight Emerger Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;14@", "pd2005934880.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[480] = new Element(
		480, "assets/thumb/zoo cougar 1.JPG",
		150, 53,
		"Zoocougar", "Zoo Cougar",
		"", "",
		"2", "0",
		"1", 1,
		"Pieces", "66",
		"", "pd-1660762261.htm",
		"", 1,
		"mm", "0",
		 0)
	
		Entry[481] = new Element(
		481, "assets/thumb/fly sardinas.JPG",
		250, 136,
		"seahabitsardine", "Sea Habit Sardine",
		"Size 2/0", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"Size;2/0@", "pd2070221987.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[482] = new Element(
		482, "assets/thumb/fly fish.JPG",
		250, 121,
		"seahabitflyingfish", "Sea Habit Flying Fish",
		"Size 2/0", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"Size;2/0@", "pd-979117802.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[483] = new Element(
		483, "assets/thumb/zonk black.JPG",
		210, 136,
		"zonker Black1", "Zonker Black",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-261404262.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[484] = new Element(
		484, "assets/thumb/zonk white.JPG",
		210, 114,
		"zonker white1", "Zonker White",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-1013187761.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[485] = new Element(
		485, "assets/thumb/zonker nat.JPG",
		230, 100,
		"Zonker Nat1", "Zonker Natural",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-883118800.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[486] = new Element(
		486, "assets/thumb/herring big 1.JPG",
		200, 114,
		"bigeyeherring", "Big Eye Baitfish Herring",
		"Size 2/0", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"Size;2/0@", "pd-771715012.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[487] = new Element(
		487, "assets/thumb/blue herring big 1.JPG",
		200, 107,
		"bigeyebluback", "Big Eye Baitfish Blue Back",
		"Size 2/0", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"Size;2/0@", "pd-1347715197.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[488] = new Element(
		488, "assets/thumb/crystal egg orange.JPG",
		100, 62,
		"Crystaleggorange 8", "Crystal Egg Bright Orange",
		"Size 2/0", "",
		"1", "0",
		"1", 1,
		"Pieces", "96",
		"Size;8@", "pd-1470987914.htm",
		"", 1,
		"N", "0",
		 0)
	
		Entry[489] = new Element(
		489, "assets/thumb/soft hackle green.JPG",
		80, 107,
		"softpartgreen1", "Soft Hackle Partridge/Green",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "107",
		"Size;12@", "pd-365318413.htm",
		"", 1,
		"wet fly", "0",
		 0)
	
		Entry[490] = new Element(
		490, "assets/thumb/soft hackle herl.JPG",
		80, 70,
		"softpartherl1", "Soft Hackle Partridge/Herl",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "107",
		"Size;12@", "pd-1087615953.htm",
		"", 1,
		"wet fly", "0",
		 0)
	
		Entry[491] = new Element(
		491, "assets/thumb/clouser red minnow.JPG",
		230, 90,
		"clouserred finn", "Clouser Minnow Red Finn",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "65",
		"Size;8@", "pd1252066903.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[492] = new Element(
		492, "assets/thumb/18 scud 1.JPG",
		100, 95,
		"1/8&#0034; ScudBack Clear", "1/8&quot; Scud Back",
		"1 Yard/Pack", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "49",
		"Color;Clear@", "pd1743400538.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[493] = new Element(
		493, "assets/images/nopicture.gif",
		55, 38,
		"MaradoAxis F", "Marado Axis-F Model # 045",
		"4-5 Line Weight", "",
		"33.99", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1156812047.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[494] = new Element(
		494, "assets/images/nopicture.gif",
		55, 38,
		"polarfi1", "Polarfibre",
		"", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Black@", "pd-355691051.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[495] = new Element(
		495, "assets/thumb/sinkheadbearA.jpg",
		125, 221,
		"Bearsink24", "Braided loop to loop sinking head 24&quot; length",
		"", "",
		"4.1", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd1061098396.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[496] = new Element(
		496, "assets/thumb/Re ctrator.JPG",
		100, 152,
		"pinonreel", "Pin On Retractor",
		"", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd787158358.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[497] = new Element(
		497, "assets/thumb/Single Squeeze.JPG",
		100, 156,
		"Holdzit1", "Holdzit Squeeze Sheath",
		"Single", "",
		"3.3", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd-395660611.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[498] = new Element(
		498, "assets/thumb/nipper.JPG",
		100, 166,
		"Nippers", "Line Clipper With needlefor cleaning hook eyes",
		"", "",
		"3.15", "0",
		"1", 1,
		"Pieces", "22",
		"", "pd223085800.htm",
		"", 1,
		"Leaderassc", "0",
		 0)
	
		Entry[499] = new Element(
		499, "assets/thumb/Double Holdzit.JPG",
		100, 167,
		"Holdzit2", "Holdzit Squeeze Sheath",
		"Double", "",
		"4.5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd897526579.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[500] = new Element(
		500, "assets/thumb/Umpqvest patch.JPG",
		100, 64,
		"Umpvestpatch", "Umpqua Vest Patch",
		"3&quot;x2&quot;", "",
		"5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1483589769.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[501] = new Element(
		501, "assets/thumb/Ump Dig Thermometer.JPG",
		110, 271,
		"UmpTherDig", "Umpqua Digital Thermometer",
		"", "",
		"7.95", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd703664460.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[502] = new Element(
		502, "assets/thumb/Ruler.JPG",
		125, 134,
		"Ruler", "Sure Size Ruler",
		"", "",
		"6.5", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd1410226132.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[503] = new Element(
		503, "assets/images/nopicture.gif",
		55, 38,
		"Loco Skin Blue", "Loco Skin (Single Sided) Adhesive",
		"", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "55",
		"Loco Skin;Metallic Blue@", "pd-689005981.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[504] = new Element(
		504, "assets/images/nopicture.gif",
		55, 38,
		"Loco Skin Double ", "Loco Skin (Double Sided)",
		"", "",
		"5.65", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd-1497382445.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[505] = new Element(
		505, "assets/images/nopicture.gif",
		55, 38,
		"Peccary", "Peccary",
		"Uses include tails on nymphs and dry flies ", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd1083331970.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[506] = new Element(
		506, "assets/thumb/deep pupa 1.JPG",
		150, 112,
		"DeepPupa gin 14", "Deep Sparkle Pupa",
		"Available in four colors", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Color & Size;Ginger Size 14@", "pd1068663984.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[507] = new Element(
		507, "assets/thumb/ez body smelt 1.JPG",
		250, 82,
		"EZSmelt", "E-Z Body Smelt With An Epoxy Head",
		"Small is 4&quot; Long with Tail, Medium is 5&quot; Long including Tail", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;Medium@", "pd2047690623.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[508] = new Element(
		508, "assets/thumb/ez body shine.jpg",
		230, 66,
		"ezshiner", "E-Z Body Shiner",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd274916731.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[509] = new Element(
		509, "assets/thumb/soft shell crayfish brown.JPG",
		230, 109,
		"SoftcrayBrown1", "Soft Shell Crayfish Brown",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd546959310.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[510] = new Element(
		510, "assets/thumb/trout finn 1.JPG",
		150, 88,
		"Trout Finn1", "Trout Finn",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-139030467.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[511] = new Element(
		511, "assets/thumb/smelt epoxy olive 1.JPG",
		150, 44,
		"Epoxy smelt olive1", "Epoxy Smelt Olive",
		"#4 is 2 1/2 inches, #6 is 2 inches", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "68",
		"Size;2@", "pd815408665.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[512] = new Element(
		512, "assets/thumb/Jiggie Green (2).jpg",
		180, 69,
		"jiggreen", "Jiggy Green/White Size 1/0",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd764992210.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[513] = new Element(
		513, "assets/thumb/jiggie black 1.JPG",
		180, 77,
		"jiggyblack", "Jiggy Black Size 1/0",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd-173928687.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[514] = new Element(
		514, "assets/thumb/10 umpqua 1.JPG",
		125, 163,
		"10umpleader", "10&rsquo; Umpqua Trout Leader",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;3 LB 6X@", "pd431066636.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[515] = new Element(
		515, "assets/thumb/para quill pmd.JPG",
		121, 92,
		"Parapmd1", "Parachute Quill PMD",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd-1751510023.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[516] = new Element(
		516, "assets/thumb/para quill cahill.JPG",
		125, 90,
		"paraquillcahill1", "Parachute Quill Lt. Cahill",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;16@", "pd970931605.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[517] = new Element(
		517, "assets/thumb/wonder minnow gold.JPG",
		175, 58,
		"WonMinngold", "Wonder Minnow Gold Long Shank #2",
		"2 1/4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "71",
		"", "pd1950030065.htm",
		"", 1,
		"Wondmin", "0",
		 0)
	
		Entry[518] = new Element(
		518, "assets/thumb/wonder minnow silver.JPG",
		175, 66,
		"Wonminnsilver", "Wonder Minnow Silver Long Shank #2",
		"2 1/4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "71",
		"", "pd-1403237241.htm",
		"", 1,
		"Wondmin", "0",
		 0)
	
		Entry[519] = new Element(
		519, "assets/thumb/wonder minnow pearl.JPG",
		175, 106,
		"wonminnpearl", "Wonder Minnow Pearl Long Shank #2",
		"2 1/4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "71",
		"", "pd357188109.htm",
		"", 1,
		"Wondmin", "0",
		 0)
	
		Entry[520] = new Element(
		520, "assets/thumb/hot flash minnow.JPG",
		175, 55,
		"hotflashminnow", "Hot Flash Minnow Size 4",
		"2 1/4&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "71",
		"", "pd692882179.htm",
		"", 1,
		"Wondmin", "0",
		 0)
	
		Entry[521] = new Element(
		521, "assets/thumb/ez eye lg.JPG",
		150, 129,
		"EZEYE6 Clear", "EZ-Eyes 6 MM",
		"#4 is 2 1/2 inches, #6 is 2 inches", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "4",
		"Color;Clear@", "pd-1240924574.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[522] = new Element(
		522, "assets/thumb/ez eye 4 1.JPG",
		125, 130,
		"EZEYE4 Clear", "EZ-Eyes 4 MM",
		"#4 is 2 1/2 inches, #6 is 2 inches", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "4",
		"Color;Clear@", "pd284634490.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[523] = new Element(
		523, "assets/thumb/Stimulator Orange.JPG",
		120, 82,
		"Orangstim1", "Orange Stimulator",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;10@", "pd49436231.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[524] = new Element(
		524, "assets/thumb/Yellow Sally.JPG",
		90, 63,
		"Yellow Sally", "Yellow Sally",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;14@", "pd-1950202808.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[525] = new Element(
		525, "assets/thumb/EZBody Pearl.JPG",
		100, 139,
		"EZP1", "E-Z Body Pearl",
		"", "",
		"4.75", "0",
		"1", 1,
		"Pieces", "44",
		"Size;Large@", "pd-1865839873.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[526] = new Element(
		526, "assets/thumb/Misrofibets.JPG",
		100, 159,
		"Mayfly Tail1", "Mayfly Tails (Micro Fibetts)",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "49",
		"Color;Dark Dun@", "pd1435021363.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[527] = new Element(
		527, "assets/thumb/6 compt div midge box.JPG",
		125, 84,
		"6comptdivmidbox", "6 Compartment Divider Midge Box.",
		"3 1/4&quot; x 2&quot; x 1&quot;", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1721947793.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[528] = new Element(
		528, "assets/thumb/barred wood 1.JPG",
		150, 182,
		"BarWoodduck", "Barred Woodduck Flank",
		"12 Feathers/Pack", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd376226599.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[529] = new Element(
		529, "assets/thumb/woodduck 1.JPG",
		150, 157,
		"Lemon Woodduck", "Lemon Woodduck",
		"12 Feathers/Pack", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-671737427.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[530] = new Element(
		530, "assets/thumb/mini marabou.JPG",
		150, 96,
		"GrizzMiniMarabou1", "Grizzly Mini Marabou",
		"A smaller marabou for tails on bonefish &amp; other small flies", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "35",
		"Color;Grizzly Dyed Brown@", "pd1281797027.htm",
		"", 1,
		"MA", "0",
		 0)
	
		Entry[531] = new Element(
		531, "assets/thumb/cin turkey tail 1.JPG",
		150, 200,
		"CinTipTurkey", "Cinamon Tipped Turkey Tail Feathers",
		"1 Pair", "",
		"3.6", "0",
		"1", 1,
		"Pieces", "39",
		"", "pd-743172133.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[532] = new Element(
		532, "assets/thumb/ostrich 1.JPG",
		150, 211,
		"Ostrich Black", "Ostrich Plumes",
		"Over 12&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "39",
		"Color;Black@", "pd1536019841.htm",
		"", 1,
		"Quills", "0",
		 0)
	
		Entry[533] = new Element(
		533, "assets/thumb/Zonker Tape.JPG",
		98, 421,
		"LeadZonker", "Lead Zonker Tape",
		"Adhesive Back", "",
		"2.9", "0",
		"1", 1,
		"Pieces", "40",
		"", "pd591766291.htm",
		"", 1,
		"Rabbitstri", "0",
		 0)
	
		Entry[534] = new Element(
		534, "assets/thumb/sili legs 1.JPG",
		110, 148,
		"SiliLeg Bk./Red", "Sili-Legs",
		"First color is leg color, Second color is flake color", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "49",
		"Sili-Leg Colors;Black/Red@", "pd-1831326855.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[535] = new Element(
		535, "assets/thumb/whiting select.JPG",
		120, 253,
		"WhitinSilverselectCa1", "Whiting Silver Select Cape",
		"", "",
		"52.95", "0",
		"1", 1,
		"Pieces", "62",
		"Color;Grizzly Dyed Olive@", "pd798365588.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[536] = new Element(
		536, "assets/thumb/l golden witch 1.JPG",
		200, 88,
		"Goldwitch", "Golden Witch Long Shank #4",
		"2 1/2&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-1756016799.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[537] = new Element(
		537, "assets/thumb/black gnat.JPG",
		158, 102,
		"Bl.Gnat1", "Black Gnat",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd-667080585.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[538] = new Element(
		538, "assets/thumb/harris special 1.JPG",
		150, 75,
		"Harrspecial1", "Harris Special",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd-18709005.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[539] = new Element(
		539, "assets/thumb/flaggs smelt 1.JPG",
		175, 55,
		"fLAGSMELT1", "Flaggs Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd1530796356.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[540] = new Element(
		540, "assets/thumb/hi vis adams.JPG",
		130, 105,
		"hIPARAADAMS1", "Hi-Vis Para Adams",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "11",
		"Size;14@", "pd1935508880.htm",
		"", 1,
		"DP", "0",
		 0)
	
		Entry[541] = new Element(
		541, "assets/thumb/Nick Dumbell Eye.jpg",
		100, 130,
		"Nickel Dumb1/20", "Nickel Plated Lead Dumbell Eyes",
		"10 Pack", "",
		"1.55", "0",
		"1", 1,
		"Pieces", "4",
		"Lead Dumbell Sizes;1/20 Oz. Large@", "pd298929728.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[542] = new Element(
		542, "assets/thumb/Lead Dumbell Eyes.jpg",
		100, 81,
		"Leaddumbeye", "Lead Dumbell Eyes",
		"10 Pack", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "4",
		"Lead Dumbell Sizes;1/20 Oz. Large@", "pd2101153629.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[543] = new Element(
		543, "assets/thumb/Glass Fly Rattles.jpg",
		100, 133,
		"Glassrattleles 3mm", "Glass Fly Rattles",
		"10/Pack", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "3",
		"Size;3MM@", "pd-1354179461.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[544] = new Element(
		544, "assets/thumb/black mon 1.JPG",
		100, 236,
		"BK.MonoEye Small", "Black Mono Eyes",
		"10/Pack", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "4",
		"Size;S@", "pd-433958194.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[545] = new Element(
		545, "assets/thumb/olive mon 1.JPG",
		100, 201,
		"OL>monoEye Large", "Olive Mono Eyes",
		"10/Pack", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "4",
		"Size;L@", "pd-1600382029.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[546] = new Element(
		546, "assets/thumb/JC Eyes.jpg",
		125, 110,
		"JC10", "Jungle Cock Eyes 10/Pack",
		"Med.", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-746547196.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[547] = new Element(
		547, "assets/thumb/eggs pink.JPG",
		125, 140,
		"CRYEGGBALLPINK 5mm", "Crystal Egg Balls Hot Pink",
		"12/Pack", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "46",
		"Size;5MM@", "pd-1343828526.htm",
		"", 1,
		"Egg Balls", "0",
		 0)
	
		Entry[548] = new Element(
		548, "assets/thumb/eggs orange.JPG",
		125, 135,
		"CRYEGGORANGE 5mm", "Crystal Egg Balls Bright Orange",
		"12/Pack", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "46",
		"Size;5MM@", "pd-437186818.htm",
		"", 1,
		"Egg Balls", "0",
		 0)
	
		Entry[549] = new Element(
		549, "assets/thumb/AH minnow Blue.JPG",
		154, 62,
		"AHBLUE1", "Angel Hair Baitfish Blue",
		"3&quot; Long With Epoxy Head", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd-370092620.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[550] = new Element(
		550, "assets/thumb/AH minnow Green.JPG",
		154, 55,
		"AHGREEN 2", "Angel Hair Baitfish Green",
		"With Epoxy Head", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd858286336.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[551] = new Element(
		551, "assets/thumb/AH minnow gray.JPG",
		154, 58,
		"AHGRAY 2", "Angel Hair Baitfish Grey",
		"With Epoxy Head", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd1829644556.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[552] = new Element(
		552, "assets/thumb/Slim jim olive.JPG",
		200, 46,
		"SlimJimOlive", "Pages Slim Jim Olive",
		"Size 2", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "85",
		"", "pd459307974.htm",
		"", 1,
		"M", "0",
		 0)
	
		Entry[553] = new Element(
		553, "assets/thumb/Bivisible.JPG",
		90, 80,
		"BIV1", "Bivisible",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;14@", "pd1797071922.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[554] = new Element(
		554, "assets/thumb/Sedoti mackerel.JPG",
		250, 122,
		"SEDMACKEREL", "Sedottis Mackerel Size 4/0",
		"4 1/2&quot; Long", "",
		"3.1", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd59542366.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[555] = new Element(
		555, "assets/thumb/Stick On Eyes 1.jpg",
		100, 161,
		"stickeye 1/4", "Mylar eyes",
		"Silver &amp; Black", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "5",
		"Stick On Eye;1/4@", "pd-1016099707.htm",
		"", 1,
		"mylaryes", "0",
		 0)
	
		Entry[556] = new Element(
		556, "assets/thumb/Dome Eye a 1.jpg",
		100, 130,
		"DOMEYE 5/32", "Dome Eye Silver/Black",
		"20/Pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "5",
		"Sizes;5/32@", "pd-1665952660.htm",
		"", 1,
		"mylaryes", "0",
		 0)
	
		Entry[557] = new Element(
		557, "assets/thumb/cone heads sg 1.JPG",
		100, 92,
		"chms Gold lg.", "Cone Heads Large 25",
		"Qty. 25", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "2",
		"Color;Gold@", "pd-675675053.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[558] = new Element(
		558, "assets/thumb/Striper moon.JPG",
		155, 197,
		"Stripmoonb", "Striper Moon",
		"", "",
		"15.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd145209231.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[559] = new Element(
		559, "assets/images/nopicture.gif",
		55, 38,
		"3665a100", "Mustad 3665A 100 Pack",
		"6X Long Streamer Hook", "",
		"10.5", "0",
		"1", 1,
		"Pieces", "29",
		"Size;6@", "pd-1921596331.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[560] = new Element(
		560, "assets/thumb/flex cement 1.JPG",
		100, 176,
		"flex cement", "Flexible Head Cement",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd-112183184.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[561] = new Element(
		561, "assets/images/nopicture.gif",
		55, 38,
		"948401001", "Mustad 94840 100 Pack",
		"", "",
		"8.5", "0",
		"1", 1,
		"Pieces", "29",
		"Size;14@", "pd-1441819618.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[562] = new Element(
		562, "assets/thumb/Zwing olive.JPG",
		82, 91,
		"BHZWINCADDISOLIVE 14", "B.H. Z-Wing Caddis Olive",
		"Tied On TMC hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd87811766.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[563] = new Element(
		563, "assets/thumb/galdwall 1.JPG",
		150, 141,
		"Gadwallfeath", "Gadwall Feathers",
		"3&quot;x5&quot; Bag", "",
		"1.4", "0",
		"1", 1,
		"Pieces", "37",
		"", "pd-2044045317.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[564] = new Element(
		564, "assets/thumb/rainy black 1.JPG",
		125, 141,
		"rainyfloatfoamBlack", "Rainys Float Foam Black",
		"", "",
		"5.15", "0",
		"1", 1,
		"Pieces", "55",
		"Size;Medium@", "pd311069345.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[565] = new Element(
		565, "assets/thumb/Yeollow sally henry.JPG",
		80, 55,
		"YEllsallhenry", "Yellow Sally Henrys Fork",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "16",
		"Size;16@", "pd-1532942225.htm",
		"", 1,
		"STF", "0",
		 0)
	
		Entry[566] = new Element(
		566, "assets/thumb/Trude Lime.JPG",
		90, 73,
		"Limetrude1", "Lime Trude",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;12@", "pd-622442670.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[567] = new Element(
		567, "assets/thumb/overly pmd.JPG",
		128, 97,
		"OVERLYSPOTPMD1", "Overly Spotlight Emerger PMD",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd-1450055129.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[568] = new Element(
		568, "assets/thumb/razzle dazzle.JPG",
		220, 88,
		"RazzleDazzle", "Razzle Dazzle Size #1/0",
		"5-6&quot; Long", "",
		"5.25", "0",
		"1", 1,
		"Pieces", "82",
		"", "pd-1828659434.htm",
		"", 1,
		"Flat Feath", "0",
		 0)
	
		Entry[569] = new Element(
		569, "assets/thumb/olive baby bunk 1.JPG",
		155, 112,
		"OliveBabyBunker", "Olive Baby Bunker Size #2",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd2062343808.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[570] = new Element(
		570, "assets/thumb/crease blue A.JPG",
		220, 103,
		"Creaseblue", "Crease Fly Blue Back",
		"1/0 3&quot; Long, 3/0 3 1/2&quot; Long.", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "80",
		"Size;1/0@", "pd-131929938.htm",
		"", 1,
		"Crease", "0",
		 0)
	
		Entry[571] = new Element(
		571, "assets/thumb/Crease Fly Fire Tiger (2).jpg",
		220, 78,
		"CreaseFire Tiger", "Crease Fly Fire Tiger",
		"1/0 3&quot; Long, 3/0 3 1/2&quot; Long.", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "80",
		"Size;1/0@", "pd-1803707066.htm",
		"", 1,
		"Crease", "0",
		 0)
	
		Entry[572] = new Element(
		572, "assets/thumb/Bunker 1 (3).JPG",
		220, 74,
		"CreaseBunker", "Crease Fly Bunker",
		"1/0 3&quot; Long, 3/0 3 1/2&quot; Long.", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "80",
		"Size;1/0@", "pd-1881449038.htm",
		"", 1,
		"Crease", "0",
		 0)
	
		Entry[573] = new Element(
		573, "assets/thumb/female adams.JPG",
		112, 108,
		"FAdams1", "Female Adams",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;14@", "pd1089297630.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[574] = new Element(
		574, "assets/thumb/permit crab.JPG",
		155, 104,
		"Permitcrab", "Permit Crab Size #2",
		"", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd-225117179.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[575] = new Element(
		575, "assets/thumb/Enrico Crab Olive (3).JPG",
		155, 132,
		"Enricocrabolive", "Enrico Crab Olive",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd26654139.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[576] = new Element(
		576, "assets/thumb/marabou shrimp pink.JPG",
		155, 126,
		"MarShrimppink", "Marabou Shrimp Pink Size #4",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd978132577.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[577] = new Element(
		577, "assets/thumb/black eyed shrimp white.JPG",
		155, 102,
		"BK.EyeShrimpWhite", "Black Eyed Shrimp White Size #4",
		"Tied with monofilament eyes for a light entry into the water.", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-2109538691.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[578] = new Element(
		578, "assets/thumb/black eyed shrimp pink.JPG",
		155, 85,
		"Bk.EyedShrimp Pink", "Black Eyed Shrimp Pink Size #4",
		"Tied with monofilament eyes for a light entry into the water.", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "87",
		"", "pd-1719182093.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[579] = new Element(
		579, "assets/thumb/bone food.JPG",
		155, 83,
		"Bonefood1", "Bonefood",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd1442576473.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[580] = new Element(
		580, "assets/thumb/squimp white.JPG",
		155, 89,
		"Squimppearl", "Squimp Pearl Size 4",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd297435947.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[581] = new Element(
		581, "assets/thumb/7 Deceivers Onlinestore.JPG",
		180, 149,
		"7DeceiverAsst 1-0", "Deceiver Assortment 7 Flies",
		"1/0 3&quot; Long, 3/0 3 1/2&quot; Long.", "",
		"12.95", "0",
		"1", 1,
		"Pieces", "89",
		"Size;1/0@", "pd281897297.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[582] = new Element(
		582, "assets/thumb/5 Angel hair Onlinestore.JPG",
		155, 93,
		"AngelHairasst51", "Angel Hair Assortment 5 Flies",
		"With Epoxy Head", "",
		"8.5", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd1164081450.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[583] = new Element(
		583, "assets/thumb/clouser black 1.JPG",
		180, 78,
		"SWCBK.1", "Clouser Minnow Black",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"Size;1/0@", "pd-771694634.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[584] = new Element(
		584, "assets/thumb/6 Clouser Onlinestore.JPG",
		180, 122,
		"Clouserasst61", "Clouser Minnow assortment",
		"", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "77",
		"Size;1/0@", "pd613403803.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[585] = new Element(
		585, "assets/thumb/thin foam.JPG",
		150, 137,
		"thinfoam1", "Thin Fly Foam 2MM",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "55",
		"Color;Black@", "pd-342630323.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[586] = new Element(
		586, "assets/images/nopicture.gif",
		55, 38,
		"RainPopp", "Rainy&rsquo;s Foam Poppers",
		"", "",
		"3.25", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd885150661.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[587] = new Element(
		587, "assets/thumb/Rainys Float Foam 1.jpg",
		100, 181,
		"rainyfloatfoamWhite", "Rainys Float Foam White",
		"", "",
		"5.15", "0",
		"1", 1,
		"Pieces", "55",
		"", "pd1957352315.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[588] = new Element(
		588, "assets/thumb/barrs bwo emerger.JPG",
		85, 80,
		"BHBARREMERBWO1", "B.H. Barrs Emerger BWO",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd-1996656095.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[589] = new Element(
		589, "assets/thumb/zebra black.JPG",
		80, 80,
		"BHZEBRABK 18", "B.H. Zebra Midge Black",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "95",
		"Size;18@", "pd808668858.htm",
		"", 1,
		"Midge Nymp", "0",
		 0)
	
		Entry[590] = new Element(
		590, "assets/thumb/zebra brown.JPG",
		60, 33,
		"BHZEBRAMI 18", "B.H. Zebra Midge Camel (Brown)",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "95",
		"Size;18@", "pd-187559164.htm",
		"", 1,
		"Midge Nymp", "0",
		 0)
	
		Entry[591] = new Element(
		591, "assets/thumb/zebra gray.JPG",
		65, 37,
		"BHZEBRAGRAY 18", "B.H. Zebra Midge Gray",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "95",
		"Size;18@", "pd-1454886402.htm",
		"", 1,
		"Midge Nymp", "0",
		 0)
	
		Entry[592] = new Element(
		592, "assets/thumb/Striper Slayer1.JPG",
		248, 124,
		"StripSlay", "Striper Slayer Size 3/0",
		"Tied On a Short Shank Hook", "",
		"3.95", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd1165585960.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[593] = new Element(
		593, "assets/thumb/Blue Back Herring 1.JPG",
		250, 142,
		"BlueBackHerrin", "Blue Back Herring Size 3/0",
		"Tien On a Short Shank Hook", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd93560982.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[594] = new Element(
		594, "assets/thumb/fishhead sand eel1 A.JPG",
		170, 66,
		"FishHeadSandEel", "FishHead Sand Eel",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "74",
		"", "pd-67432268.htm",
		"", 1,
		"3", "0",
		 0)
	
		Entry[595] = new Element(
		595, "assets/thumb/l Green witch jc 1.JPG",
		175, 85,
		"Greenwitchjclong", "Green Witch With Jungle Cock Long Shank #4",
		"", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-461160931.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[596] = new Element(
		596, "assets/thumb/l Sportsay 1.JPG",
		175, 83,
		"sportslong", "Sportsmansay Long Shank #4",
		"", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-1293146733.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[597] = new Element(
		597, "assets/thumb/l Francis Smelt 1.JPG",
		175, 72,
		"Francislong", "Francis Smelt Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd-1726189063.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[598] = new Element(
		598, "assets/thumb/l NinE-Three 1.JPG",
		175, 88,
		"93long", "Nine-Three Long Shank #4",
		"2 1/4&quot; Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "69",
		"", "pd2131258575.htm",
		"", 1,
		"TS", "0",
		 0)
	
		Entry[599] = new Element(
		599, "assets/thumb/Hivis rust spin1.JPG",
		95, 75,
		"Hivisrusty1", "Hi-Vis Rusty Spinner",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "15",
		"Size;14@", "pd1924738654.htm",
		"", 1,
		"Spin", "0",
		 0)
	
		Entry[600] = new Element(
		600, "assets/thumb/DOW SADDLE.JPG",
		120, 195,
		"DOWSADDLE1", "Dyed Over white Saddles",
		"", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Black@", "pd-166108062.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[601] = new Element(
		601, "assets/thumb/dome red 1.JPG",
		100, 137,
		"domered 3/16", "Dome Eyes Red/Black",
		"20/Pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "5",
		"Sizes;3/16@", "pd921850746.htm",
		"", 1,
		"mylaryes", "0",
		 0)
	
		Entry[602] = new Element(
		602, "assets/thumb/gill plates blue.JPG",
		125, 53,
		"Gillplates Blue", "Gill Plates 3/4 In. x 1/4 In. Self adhesive",
		"30/Pack", "",
		"1", "0",
		"1", 1,
		"Pieces", "5",
		"Color;Blue@", "pd96829222.htm",
		"", 1,
		"mylaryes", "0",
		 0)
	
		Entry[603] = new Element(
		603, "assets/thumb/gold chain 1.JPG",
		100, 113,
		"GoldBeadchain", "Gold Bead Chain",
		"", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "3",
		"Size;Medium@", "pd1265095651.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[604] = new Element(
		604, "assets/thumb/Artic fox.JPG",
		200, 172,
		"Artic1", "Artic Fox",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "41",
		"Color;Black@", "pd765969090.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[605] = new Element(
		605, "assets/thumb/DOW hen cape.JPG",
		100, 211,
		"DOWHen1", "Dyed Over White Hen Cape",
		"", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "61",
		"Color;Chartreuse@", "pd544571023.htm",
		"", 1,
		"MiscCapes", "0",
		 0)
	
		Entry[606] = new Element(
		606, "assets/thumb/mirage 1.JPG",
		175, 191,
		"FlashMirage1", "Flashabou Mirage",
		"", "",
		"4.25", "0",
		"1", 1,
		"Pieces", "47",
		"Krystal;Chartreuse 3062@", "pd816484009.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[607] = new Element(
		607, "assets/thumb/rainy yellow 1.JPG",
		125, 138,
		"rainyfloatfoamYellow1", "Rainys Float Foam Yellow",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "55",
		"Size;Medium@", "pd-431660000.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[608] = new Element(
		608, "assets/thumb/adams.JPG",
		110, 100,
		"Adams 14", "Adams",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "13",
		"Size;14@", "pd-240641990.htm",
		"", 1,
		"DTR", "0",
		 0)
	
		Entry[609] = new Element(
		609, "assets/thumb/burks pmd.JPG",
		85, 75,
		"sillkburkpmd1", "Silhouette Dun Burks P.M.D.",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;22@", "pd314994543.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[610] = new Element(
		610, "assets/images/nopicture.gif",
		55, 38,
		"creasegreen", "Crease Fly Green Back",
		"1/0 3&quot; Long, 3/0 3 1/2&quot; Long.", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "80",
		"Size;1/0@", "pd-1194871896.htm",
		"", 1,
		"Crease", "0",
		 0)
	
		Entry[611] = new Element(
		611, "assets/thumb/anchovy olive flash.JPG",
		180, 124,
		"EpoxAnchFlash", "Epoxy Olive Anchovy Flash",
		"Size 2", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-983257548.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[612] = new Element(
		612, "assets/thumb/anchovy bucktail.JPG",
		180, 74,
		"Anchbucktail", "Epoxy Bucktail Anchovy",
		"Size 2", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-1242853502.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[613] = new Element(
		613, "assets/thumb/angel hair bait olive.JPG",
		154, 70,
		"AHOlive1", "Angel Hair Baitfish Olive",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd-70334080.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[614] = new Element(
		614, "assets/thumb/angel hair bait gold.JPG",
		154, 60,
		"AHGold1", "Angel Hair Baitfish Gold",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "75",
		"Size;2@", "pd-413167220.htm",
		"", 1,
		"AHBait", "0",
		 0)
	
		Entry[615] = new Element(
		615, "assets/thumb/poopah tan.JPG",
		120, 95,
		"BHPOOPAHTAN1", "B.H. Caddis Poopah Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd2088850008.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[616] = new Element(
		616, "assets/thumb/poopah olive.JPG",
		106, 88,
		"BHPOOPAHOLIVE1", "B.H. Caddis Poopah Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Size;14@", "pd-1858398236.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[617] = new Element(
		617, "assets/thumb/deep candy olive.JPG",
		180, 46,
		"DEEPCANDYOLIVE", "Deep Candy Olive Size #2",
		"Approx. 3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd1579852092.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[618] = new Element(
		618, "assets/thumb/deep candy chart.JPG",
		180, 55,
		"DEEPCANDYCHART", "Deep Candy Chartreuse Size #2",
		"Approx. 3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-2143954486.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[619] = new Element(
		619, "assets/thumb/double bunny olive.JPG",
		220, 77,
		"DBUNNYOLIVE", "Double Bunny Olive Size 4",
		"3&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd2045394184.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[620] = new Element(
		620, "assets/thumb/double bunny white.JPG",
		220, 86,
		"DBUNNYWHITE", "Double Bunny White Size #4",
		"3&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd623938166.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[621] = new Element(
		621, "assets/thumb/eelie.JPG",
		220, 63,
		"EElie1", "Eelie",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "82",
		"Size;1/0@", "pd2125303188.htm",
		"", 1,
		"Flat Feath", "0",
		 0)
	
		Entry[622] = new Element(
		622, "assets/thumb/rays fly feather.JPG",
		220, 164,
		"RaysFeather1", "Rays Fly Feather Wing",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "82",
		"Size;1/0@", "pd-1191223584.htm",
		"", 1,
		"Flat Feath", "0",
		 0)
	
		Entry[623] = new Element(
		623, "assets/thumb/september night fly.JPG",
		220, 102,
		"SeptNightFly", "September Night Fly Size #1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "82",
		"", "pd-1643168532.htm",
		"", 1,
		"Flat Feath", "0",
		 0)
	
		Entry[624] = new Element(
		624, "assets/thumb/Large Baitfish 4 online store.JPG",
		250, 340,
		"1LargeBaitAsst.4", "Large Baitfish Assortment",
		"", "",
		"12.95", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd-116089606.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[625] = new Element(
		625, "assets/thumb/10Saltwater assortment online store.JPG",
		130, 172,
		"10baitasst.", "Baitfish Assortment 10 Flies",
		"", "",
		"23.5", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd92107704.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[626] = new Element(
		626, "assets/thumb/Polarfibre Blue.JPG",
		160, 114,
		"PolarfibreBlue", "Polarfibre Minnow Blue Back Size 2",
		"3&quot; Long with an epoxy head.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd1978078994.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[627] = new Element(
		627, "assets/thumb/Polarfibre Olive.JPG",
		160, 87,
		"PolarfibreOlive", "Polarfibre Minnow Olive Back",
		"3&quot; Long with an epoxy head.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd-567157872.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[628] = new Element(
		628, "assets/thumb/Polarfibre chartreuse.JPG",
		160, 107,
		"PolarfibreChart", "Polarfibre Minnow Chartreuse Back Size 2",
		"3&quot; Long with an epoxy head.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd1502768190.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[629] = new Element(
		629, "assets/thumb/Polarfibre White.JPG",
		160, 88,
		"Polarwhite", "Polarfibre Minnow White Size 2",
		"3&quot; Long with an epoxy head.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd-1650957156.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[630] = new Element(
		630, "assets/thumb/Polarfibre Gray.JPG",
		160, 100,
		"Polargray", "Polarfibre Minnow Gray Back Size 2",
		"3&quot; Long with an epoxy head.", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd920308778.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[631] = new Element(
		631, "assets/thumb/polarfibre asst Onlione store.JPG",
		160, 114,
		"Polarfibreasst", "Polarfibre Assortment",
		"Size 2", "",
		"9.25", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd-338518796.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[632] = new Element(
		632, "assets/thumb/jiggie asst 5 online store.JPG",
		180, 116,
		"AJiggieasst", "Jiggie Assortment",
		"Size 1/0", "",
		"8.5", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd-1716642750.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[633] = new Element(
		633, "assets/thumb/jiggie olive 1.JPG",
		180, 76,
		"jiggieolive", "Jiggie Olive/White",
		"Size 1/0", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd-777051072.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[634] = new Element(
		634, "assets/thumb/jiggie Gray (2).jpg",
		180, 56,
		"Jiggiegray", "Jiggie Gray/White",
		"Size 1/0", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "77",
		"", "pd231580782.htm",
		"", 1,
		"cl", "0",
		 0)
	
		Entry[635] = new Element(
		635, "assets/images/nopicture.gif",
		55, 38,
		"umpposter", "Umpqua poster flies with attitude",
		"", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-1132929957.htm",
		"", 1,
		"Fly Tyingk", "0",
		 0)
	
		Entry[636] = new Element(
		636, "assets/thumb/rays fly buck tail.JPG",
		220, 121,
		"Rayfly1", "Rays Fly",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "82",
		"Size;1/0@", "pd1691644724.htm",
		"", 1,
		"Flat Feath", "0",
		 0)
	
		Entry[637] = new Element(
		637, "assets/thumb/ORG (2).jpg",
		200, 134,
		"Org", "Organizer For Beads, Hooks &amp; Cones.",
		"", "",
		"12.95", "0",
		"1", 1,
		"Pieces", "28",
		"", "pd1093152038.htm",
		"", 1,
		"Hook Boxes", "0",
		 0)
	
		Entry[638] = new Element(
		638, "assets/thumb/IW (2) thumb.jpg",
		200, 141,
		"IW", "Ice Wing Fiber",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "47",
		"Color;Chartreuse@", "pd869998469.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[639] = new Element(
		639, "assets/thumb/MTF1 (2) thumb.jpg",
		150, 100,
		"1FF Black", "Ultra Thin (1.5MM) Fly Foam",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "55",
		"Color;Black@", "pd1641576929.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[640] = new Element(
		640, "assets/thumb/TSL (2) thumb.jpg",
		150, 82,
		"TSL", "Tungsten Stretch Lace",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "47",
		"", "pd978212599.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[641] = new Element(
		641, "assets/thumb/Supreme Hair Shrimp Tan.JPG",
		250, 108,
		"SupremeShrimpTan", "Supreme Hair Shrimp Tan Size 2",
		"", "",
		"2.35", "0",
		"1", 1,
		"Pieces", "103",
		"", "pd1096633692.htm",
		"", 1,
		"SaltUmpq", "0",
		 0)
	
		Entry[642] = new Element(
		642, "assets/thumb/poxy bwo.JPG",
		214, 115,
		"Epoxybwo1", "B.W.O. Epoxy Back Emerger",
		"Tied On TMC Hooks", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "14",
		"Size;16@", "pd-1221862316.htm",
		"", 1,
		"Emerg", "0",
		 0)
	
		Entry[643] = new Element(
		643, "assets/thumb/Chernobyl ant Black.JPG",
		140, 108,
		"Chernantblack1", "Chernobyl Ant Black",
		"Small Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd95820192.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[644] = new Element(
		644, "assets/thumb/Chernobyl ant Tan Black.JPG",
		140, 64,
		"Chernanttan 10", "Chernobyl Ant Tan/Black",
		"Smal Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd-893574228.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[645] = new Element(
		645, "assets/thumb/Chernobyl ant Yellow tan.JPG",
		140, 95,
		"chernoanttanyellow 10", "Chernobyl Ant Tan/Yellow",
		"Smal Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd1296909944.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[646] = new Element(
		646, "assets/thumb/Chernobyl ant Yellow Black.JPG",
		140, 119,
		"chernantyellbk 10", "Chernobyl Ant Yellow/Black",
		"Smal Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd875531780.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[647] = new Element(
		647, "assets/thumb/Chernobyl ant black red.JPG",
		140, 150,
		"Chernantredbk 10", "Chernobyl Ant Red/Black",
		"Smal Amount of epoxy on hook shank For Durability.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;10@", "pd557172304.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[648] = new Element(
		648, "assets/thumb/cinammon ant.JPG",
		69, 60,
		"CinAnt1", "Cinnamon Ant",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "12",
		"Size;20@", "pd-112821412.htm",
		"", 1,
		"DT", "0",
		 0)
	
		Entry[649] = new Element(
		649, "assets/images/nopicture.gif",
		55, 38,
		"Metz#1saddle1", "Metz #1 Saddle",
		"", "",
		"21.25", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Brown@", "pd623442216.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[650] = new Element(
		650, "assets/images/nopicture.gif",
		55, 38,
		"Metz#1Neck1", "Metz #1 Dry Fly Neck",
		"", "",
		"65", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Black@", "pd-686732364.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[651] = new Element(
		651, "assets/images/nopicture.gif",
		55, 38,
		"Metz1/2#2Neck1", "Metz 1/2 Neck #2",
		"", "",
		"23.95", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Barred Ginger@", "pd1185486103.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[652] = new Element(
		652, "assets/images/nopicture.gif",
		55, 38,
		"Metz#1HenNeck1", "Metz #1 Hen Neck",
		"", "",
		"14.95", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Black@", "pd-1704484615.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[653] = new Element(
		653, "assets/thumb/perfect video.JPG",
		150, 269,
		"PerfectVideo", "Perfect Cut Wings Video",
		"90 Minutes VHS", "",
		"16.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-1274570091.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[654] = new Element(
		654, "assets/thumb/moose body.JPG",
		125, 144,
		"Moosebody", "Moose Body Hair Natural",
		"2 1/2 x 2 1/2 Inch Piece", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd1052948171.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[655] = new Element(
		655, "assets/thumb/moose mane.JPG",
		150, 199,
		"MooseMane", "Moose Mane Natural",
		"1 x 2 1/2 Inch Piece", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "41",
		"", "pd-1752480271.htm",
		"", 1,
		"T&H", "0",
		 0)
	
		Entry[656] = new Element(
		656, "assets/thumb/Rod Bag.JPG",
		100, 143,
		"rodbag", "Alexanders Deluxe fly Rod Bags",
		"fits 8.5 foot 2 piece fly rods", "",
		"4.85", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1761624712.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[657] = new Element(
		657, "assets/images/nopicture.gif",
		55, 38,
		"System289", "Scientific Anglers System 2 Reel",
		"Model 89", "",
		"172.95", "0",
		"1", 1,
		"Pieces", "24",
		"", "pd1961590489.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[658] = new Element(
		658, "assets/thumb/c47sd.JPG",
		125, 284,
		"Mustadc47sd 2", "Mustad C47SD Saltwater Shrimp 25/Pack",
		"3x Short", "",
		"4.25", "0",
		"1", 1,
		"Pieces", "29",
		"Size;2@", "pd1660360107.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[659] = new Element(
		659, "assets/thumb/cape sand grizz 1.JPG",
		155, 49,
		"CCSEGO", "Cape Cod Sand Eel Grizzly/Olive Size 2",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "90",
		"", "pd-96535106.htm",
		"", 1,
		"SWB", "0",
		 0)
	
		Entry[660] = new Element(
		660, "assets/thumb/smelt epoxy blue 1.JPG",
		150, 43,
		"Epoxy smelt Blue 4", "Epoxy Smelt Blue",
		"#4 is 2 1/2 inches, #6 is 2 inches", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "68",
		"Size;4@", "pd-1676445751.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[661] = new Element(
		661, "assets/thumb/kevelar a.JPG",
		150, 133,
		"Kevlar thread", "Kevlar Thread Black",
		"50 Yards", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "51",
		"", "pd-1230015038.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[662] = new Element(
		662, "assets/thumb/metz best vise 1.JPG",
		150, 301,
		"MetzBestViseI", "Metz Best Vise I",
		"", "",
		"33.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd2017860032.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[663] = new Element(
		663, "assets/thumb/pearl tub xxlarge.JPG",
		100, 133,
		"Salttubing 1.2 Pearl", "Saltwater Mylar Tubing XX-Large 1/2 Inch",
		"1 Yard", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "44",
		"Color;Pearl@", "pd308514416.htm",
		"", 1,
		"Bod", "0",
		 0)
	
		Entry[664] = new Element(
		664, "assets/images/nopicture.gif",
		55, 38,
		"COQSADDLE bronze dun", "COQ DE LEON Rooster Saddle",
		"Bronze Grade", "",
		"10", "0",
		"1", 1,
		"Pieces", "62",
		"Whiting;Dun@", "pd-1351731917.htm",
		"", 1,
		"Whiting", "0",
		 0)
	
		Entry[665] = new Element(
		665, "assets/thumb/unithread.JPG",
		100, 73,
		"Uni80 Black", "Uni-Thread 8/0",
		"200 Yard Spools", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "51",
		"Uni 8/0 Colors;Black@", "pd706888626.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[666] = new Element(
		666, "assets/thumb/tan epoxy1.JPG",
		180, 80,
		"TanEpoxyminn", "Tan Surf Candy Size 2",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-523548524.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[667] = new Element(
		667, "assets/thumb/page sand eel chart1.JPG",
		180, 95,
		"PageSandChart", "Pages Sand Eel Chartreuse/White Size #2 Long Shank",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-1263456030.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[668] = new Element(
		668, "assets/thumb/page sand eel Brown 1.JPG",
		180, 74,
		"PagessandBrown", "Pages Sand Eel Brown/White Size #2 Long Shank",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd1531365856.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[669] = new Element(
		669, "assets/thumb/keel eel olive1.JPG",
		180, 71,
		"KeelEelOlive", "Keel Eel Olive Size #1/0",
		"4&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd-1389346034.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[670] = new Element(
		670, "assets/thumb/keel eel Brown 1.JPG",
		220, 112,
		"KeelEelBrown", "Keel Eel Brown Size #1/0",
		"4&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"", "pd1945851884.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[671] = new Element(
		671, "assets/thumb/Bang Black.JPG",
		210, 93,
		"BangerBlack", "Bobs Banger Black #1/0",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd1156198394.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[672] = new Element(
		672, "assets/thumb/Bang Blue.JPG",
		210, 138,
		"Banger Blue", "Bobs Banger Blue #1/0",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd137969336.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[673] = new Element(
		673, "assets/thumb/Bang green.JPG",
		210, 102,
		"Banger Green", "Bobs Banger Green Size #1/0",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-1923603546.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[674] = new Element(
		674, "assets/thumb/Bang Red.JPG",
		210, 128,
		"BangerRed", "Bobs Banger Red #1/0",
		"3&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd1632471620.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[675] = new Element(
		675, "assets/thumb/Bang silver.JPG",
		210, 106,
		"BangerSilver", "Bobs Banger Silver #1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-12711406.htm",
		"0::12::15;0::12::15;0::12::15;", 1,
		"Top Water", "0",
		 0)
	
		Entry[676] = new Element(
		676, "assets/thumb/zonk olive.JPG",
		210, 95,
		"Zonk Olive1", "Zonker Olive",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd1763477329.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[677] = new Element(
		677, "assets/thumb/zonk chil.JPG",
		210, 89,
		"Zonker Chin1", "Zonker Chinchilla",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"Size;4@", "pd-1027662038.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[678] = new Element(
		678, "assets/thumb/double bumm chin white.JPG",
		210, 126,
		"Doublechinchila", "Double Bunny Chinchilla/White Size #4",
		"3&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd500017823.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[679] = new Element(
		679, "assets/thumb/ice dub.JPG",
		100, 76,
		"Icedub1", "Ice Dubbing",
		"Great Sparckle and Easy to dub", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Olive@", "pd-959959579.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[680] = new Element(
		680, "assets/thumb/Poly Yarn.JPG",
		100, 141,
		"Poly Yarn1", "Polypropylene Floating Yarn",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Orange@", "pd1956939630.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[681] = new Element(
		681, "assets/thumb/Bullethead tool.JPG",
		100, 176,
		"Bulletheadtools", "Griffin Bullethead Tools",
		"", "",
		"6.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd1009428751.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[682] = new Element(
		682, "assets/thumb/Wasatch Bodkin half hitch.JPG",
		70, 368,
		"Wasatch Bod/Half", "Wasatch Bodkin/Half Hitch Tool",
		"", "",
		"7.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd2043220437.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[683] = new Element(
		683, "assets/thumb/Wasatch Dubbing brush.JPG",
		100, 264,
		"WasatchDubbing1", "Wasatch Dubbing Brush",
		"", "",
		"9.25", "0",
		"1", 1,
		"Pieces", "56",
		"Wasatch;Dubbing Brush Standard@", "pd-1852440565.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[684] = new Element(
		684, "assets/thumb/polarfibre menhaden.JPG",
		240, 167,
		"polarmenhaden", "Polarfibre Minnow Menhaden",
		"3 Inches Ling", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "86",
		"", "pd1340257020.htm",
		"", 1,
		"Polarfibre", "0",
		 0)
	
		Entry[685] = new Element(
		685, "assets/thumb/deceiver grizz.JPG",
		180, 71,
		"GrizzDec", "Grizzly Deceiver Size 1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"", "pd-1298336471.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[686] = new Element(
		686, "assets/thumb/deceiver grizz yellow.JPG",
		180, 103,
		"deceivergrizzyellow", "Grizzly Deceiver Yellow Size 1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "89",
		"", "pd-1424792705.htm",
		"", 1,
		"sw100", "0",
		 0)
	
		Entry[687] = new Element(
		687, "assets/thumb/slim jim black.JPG",
		200, 90,
		"Slimjimblack", "Pages Slim Jim Black",
		"Size 2", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "85",
		"", "pd-1817439803.htm",
		"", 1,
		"M", "0",
		 0)
	
		Entry[688] = new Element(
		688, "assets/thumb/cone deceiver white.JPG",
		180, 106,
		"conedecwhite", "Cone Head Deceiver White Size 1/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd853721467.htm",
		"", 1,
		"Conedec", "0",
		 0)
	
		Entry[689] = new Element(
		689, "assets/thumb/cone deceiver Green.JPG",
		180, 107,
		"conedecgreen", "Cone Head Deceiver Green/White Size 1/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd435097633.htm",
		"", 1,
		"Conedec", "0",
		 0)
	
		Entry[690] = new Element(
		690, "assets/thumb/frontier flies 1.JPG",
		150, 197,
		"Frontier flies book", "Frontier Flies By Troy Bachmann",
		"", "",
		"29.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-1558718665.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[691] = new Element(
		691, "assets/thumb/20 incher.JPG",
		115, 100,
		"20 incher ump1", "20 Incher",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd-642413507.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[692] = new Element(
		692, "assets/thumb/cone deceiver Blue.JPG",
		180, 115,
		"condecblue", "Cone Head Deceiver Blue/White Size 1/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd685511032.htm",
		"", 1,
		"Conedec", "0",
		 0)
	
		Entry[693] = new Element(
		693, "assets/thumb/cone deceiver Chartreuse.JPG",
		180, 111,
		"conedecchart", "Cone Head Deceiver Chartreuse/White Size 1/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1634350182.htm",
		"", 1,
		"Conedec", "0",
		 0)
	
		Entry[694] = new Element(
		694, "assets/thumb/cone deceiver Olive.JPG",
		180, 102,
		"conedecolive", "Cone Head Deceiver Olive/White Size 1/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "78",
		"", "pd1100548356.htm",
		"", 1,
		"Conedec", "0",
		 0)
	
		Entry[695] = new Element(
		695, "assets/thumb/rm flat.JPG",
		220, 164,
		"rmflatside", "RM Flatside Size 3/0",
		"", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd-1000823086.htm",
		"", 1,
		"Braided ba", "0",
		 0)
	
		Entry[696] = new Element(
		696, "assets/thumb/braid sardina.JPG",
		220, 118,
		"Braidsardine", "Braided Sardina 4&quot; long Size 3/0",
		"With an epoxy head", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "76",
		"", "pd1493496144.htm",
		"", 1,
		"Braided ba", "0",
		 0)
	
		Entry[697] = new Element(
		697, "assets/thumb/braid sand eel.JPG",
		220, 133,
		"Braidsandeel 1-0", "Braided Sand Eel 4&quot; Long",
		"With An Epoxy Head", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "76",
		"Size;1/0@", "pd1794799614.htm",
		"", 1,
		"Braided ba", "0",
		 0)
	
		Entry[698] = new Element(
		698, "assets/thumb/slinky bait yellow br.JPG",
		220, 135,
		"SlinkyBunker", "Slinkyfibre Baitfish Yellow/Brown (Bunker) Size 1/0",
		"3 1/2&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd1087153814.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[699] = new Element(
		699, "assets/thumb/keel bunker.JPG",
		225, 102,
		"KeelBunker 1/0", "Keel  Slinkyfibre Baitfish Bunker Size 1/0",
		"4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"Size;1/0@", "pd724797108.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[700] = new Element(
		700, "assets/thumb/keel olive.JPG",
		221, 102,
		"KeelOlive", "Keel Slinkyfibre Baitfish Olive Back Size 1/0",
		"4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd-2105529856.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[701] = new Element(
		701, "assets/thumb/keel brown.JPG",
		222, 79,
		"KeelBrown", "Keel Slinkyfibre Baitfish Brown/White Size 1/0",
		"4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd790962222.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[702] = new Element(
		702, "assets/thumb/baja sardina.JPG",
		290, 102,
		"BajaSardina", "Keel Baja Sardina Size 3/0",
		"6&quot; Long", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd1852570124.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[703] = new Element(
		703, "assets/thumb/mexican flag.JPG",
		295, 96,
		"Mexican Flag", "Keel Mexican Flag Size 3/0",
		"6&quot; Long", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd-340779238.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[704] = new Element(
		704, "assets/thumb/loco foam.JPG",
		200, 117,
		"loco foam Metallic Silver", "Loco Foam",
		"4&quot; x  6&quot; Peice", "",
		"3.4", "0",
		"1", 1,
		"Pieces", "55",
		"Color;Metallic Silver@", "pd-616747344.htm",
		"", 1,
		"foam", "0",
		 0)
	
		Entry[705] = new Element(
		705, "assets/thumb/book 700 salt.JPG",
		150, 197,
		"Book 700Salt", "Saltwater Flies 700 Of The Best",
		"", "",
		"23.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd458493686.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[706] = new Element(
		706, "assets/thumb/book modern streamers.JPG",
		150, 206,
		"BookModernStreamers", "Modern Streamers for Trophy Trout",
		"", "",
		"33.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-1921079788.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[707] = new Element(
		707, "assets/thumb/book lefty salt.JPG",
		150, 204,
		"BookSaltFlyPatterns", "Saltwater Fly Patterns",
		"By Lefty Kreh", "",
		"18.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-841364894.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[708] = new Element(
		708, "assets/thumb/book bonefish fly patt.JPG",
		150, 201,
		"Book BonefishFlypatt", "Bonefish  Fly Patterns",
		"By Dick Brown", "",
		"44", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd1331101536.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[709] = new Element(
		709, "assets/thumb/Book trout flies.JPG",
		150, 195,
		"BookTroutFlies", "Trout Flies",
		"By Gary LaFontaine", "",
		"21.95", "0",
		"1", 1,
		"Pieces", "42",
		"", "pd-312380274.htm",
		"", 1,
		"Flyty", "0",
		 0)
	
		Entry[710] = new Element(
		710, "assets/thumb/emerald dk. smelt.JPG",
		200, 111,
		"Emerald DkSmelt", "Emerald Shiner Dark Smelt Size 10",
		"2 1/2 Inches Long Tied on TMCHooks", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "64",
		"", "pd92155353.htm",
		"", 1,
		"Emerald", "0",
		 0)
	
		Entry[711] = new Element(
		711, "assets/thumb/emerald lt. smelt.JPG",
		200, 103,
		"Emerald ltSmelt", "Emerald Shiner Light Smelt Size 10",
		"2 1/2&quot; Long Tied on TMCHooks", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "64",
		"", "pd-1894511697.htm",
		"", 1,
		"Emerald", "0",
		 0)
	
		Entry[712] = new Element(
		712, "assets/thumb/emerald dk. bait.JPG",
		200, 156,
		"Emerald Dk. Bait", "Emerald Shiner Dark Bait Size 10",
		"2 1/2 Inches Long Tied on TMCHooks", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "64",
		"", "pd1931982197.htm",
		"", 1,
		"Emerald", "0",
		 0)
	
		Entry[713] = new Element(
		713, "assets/thumb/emerald olive.JPG",
		200, 115,
		"Emerald olive", "Emerald Shiner Olive Back Size 10",
		"2 1/2 Inches Long Tied on TMCHooks", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "64",
		"", "pd2018495659.htm",
		"", 1,
		"Emerald", "0",
		 0)
	
		Entry[714] = new Element(
		714, "assets/thumb/emerald lt. bait.JPG",
		200, 100,
		"Emerald Gray lt.bait", "Emerald Shiner Gray Lt. Bait Back Size 10",
		"2 1/2 Inches Long Tied on TMCHooks", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "64",
		"", "pd-1663447343.htm",
		"", 1,
		"Emerald", "0",
		 0)
	
		Entry[715] = new Element(
		715, "assets/thumb/woods special 1.JPG",
		175, 74,
		"Woodsspecial1", "Woods Special",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd1771402599.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[716] = new Element(
		716, "assets/thumb/ultra wire small.JPG",
		150, 170,
		"Ultrawiresm1", "Ultra Wire Small",
		"For hook sizes 20 and smaller", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "52",
		"Color;Amber@", "pd1934108502.htm",
		"", 1,
		"TW", "0",
		 0)
	
		Entry[717] = new Element(
		717, "assets/thumb/ryker.JPG",
		150, 119,
		"FlyDisplayBox43", "Fly Display Box Riker",
		"4 x 3 Inches", "",
		"4.65", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-1915943744.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[718] = new Element(
		718, "assets/thumb/mallard dyed.JPG",
		150, 142,
		"mallard dyed sm1", "Mallard Flank Dyed Small Bag.",
		"3 x 5 Inch Bag", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Brown@", "pd-852775132.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[719] = new Element(
		719, "assets/thumb/scientific box small.JPG",
		200, 144,
		"Scient fly box small", "Scientific Anglers Fly Box Small",
		"3 1/2&quot; x 2 1/2&quot; x 1&quot; Flat Ripple", "",
		"5.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd-1622694145.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[720] = new Element(
		720, "assets/thumb/18TB (3).JPG",
		120, 60,
		"Tung beadsG 1", "Tungsten Beads Gold 20/Pack",
		"Tungsten Beads are twice as heavy as brass beads.", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "2",
		"Tungsten Beads;5/64 2MM@", "pd1159201093.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[721] = new Element(
		721, "assets/thumb/sparkle blend 1.JPG",
		100, 115,
		"Sparkleblend lt gray", "Sparkle Blend",
		"Pre blended 100% antron", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Lt. Gray@", "pd-1833039177.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[722] = new Element(
		722, "assets/thumb/touch dub 1.JPG",
		150, 158,
		"touch dub", "Touch Dub LaFontaine&rsquo;s",
		"", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd-970983688.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[723] = new Element(
		723, "assets/thumb/rainbow tr..JPG",
		290, 110,
		"Rainbow troutk", "Keel Rainbow Trout Size 3/0",
		"6&quot; Long", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd-862828924.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[724] = new Element(
		724, "assets/thumb/enrico Bronze mullet.JPG",
		220, 120,
		"enrico bronzemullet1", "Bronze Mullet",
		"1/0 3&quot;-3/0 5&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;1/0@", "pd-1598414766.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[725] = new Element(
		725, "assets/thumb/Bunker Gray (2).jpg",
		220, 109,
		"EnricoGrayWhite 1-0", "Bunker Gray/White",
		"1/0 3&quot;-3/0 5&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;1/0@", "pd-88962690.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[726] = new Element(
		726, "assets/thumb/enrico Chartreuse.JPG",
		220, 146,
		"enricosardina 1-0", "Sardina",
		"1/0 3&quot;-3/0 5&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;1/0@", "pd-505332374.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[727] = new Element(
		727, "assets/thumb/Bunker Chart (2).jpg",
		220, 116,
		"Enricobunkchartreuse 1-0", "Chartreuse Bunker",
		"1/0 3&quot;-3/0 5&quot; Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"Size;1/0@", "pd-1445566442.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[728] = new Element(
		728, "assets/thumb/d Gurgler Black.JPG",
		210, 129,
		"DoubGurglerBlack", "Double Gurgler Black Size 2/0",
		"Approximately 4 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-154411441.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[729] = new Element(
		729, "assets/thumb/d Gurgler Red Black.JPG",
		210, 103,
		"DoubGurglerBk. Red", "Double Gurgler Black/Red Size 2/0",
		"Approximately 4 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd700074261.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[730] = new Element(
		730, "assets/thumb/d Gurgler White.JPG",
		210, 119,
		"DoubGurgler White", "Double Gurgler White Size 2/0",
		"Approximately 4 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd1629423947.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[731] = new Element(
		731, "assets/thumb/d Gurgler Chart Black.JPG",
		210, 104,
		"DoubGurgler Bk. Char", "Double Gurgler Black/Chartreuse Size 2/0",
		"Approximately 4 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd-1665541007.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[732] = new Element(
		732, "assets/thumb/d Gurgler Chart.JPG",
		210, 125,
		"DoubGurglerChart yel", "Double Gurgler Chartreuse/Yellow Size 2/0",
		"Approximately 4 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "92",
		"", "pd85376007.htm",
		"", 1,
		"Top Water", "0",
		 0)
	
		Entry[733] = new Element(
		733, "assets/thumb/mosquito.JPG",
		108, 91,
		"Moquito1", "Moquito",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;16@", "pd769146253.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[734] = new Element(
		734, "assets/thumb/black ghost 1.JPG",
		155, 100,
		"Bk. Ghost1", "Black Ghost",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "67",
		"Size;10@", "pd38312197.htm",
		"", 1,
		"SA", "0",
		 0)
	
		Entry[735] = new Element(
		735, "assets/thumb/humpy red.JPG",
		118, 88,
		"Humpy Red 2", "Red Humpy",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;12@", "pd-435764105.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[736] = new Element(
		736, "assets/thumb/humpy royal.JPG",
		114, 90,
		"Humpy Royal1", "Royal Humpy",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;14@", "pd539624793.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[737] = new Element(
		737, "assets/thumb/humpy yellow.JPG",
		92, 64,
		"Humpy Yellow1", "Yellow Humpy",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;14@", "pd-1987401685.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[738] = new Element(
		738, "assets/thumb/ump adams.JPG",
		116, 84,
		"Adams Ump1", "Adams",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;16@", "pd-2033003155.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[739] = new Element(
		739, "assets/thumb/ump burks bwo.JPG",
		90, 75,
		"BurkDunbwo1", "Burks Dun BWO",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;22@", "pd-1248654232.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[740] = new Element(
		740, "assets/thumb/ump float damsel.JPG",
		136, 68,
		"FSwimDamsel1", "Swimming Damsel Lt. Olive Foam",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;12@", "pd-1281551628.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[741] = new Element(
		741, "assets/thumb/ump poxy emerger calli.JPG",
		206, 112,
		"Poxy Emerg Call1", "Poxyback Emerger Callibaetis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;14@", "pd-1227935333.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[742] = new Element(
		742, "assets/thumb/ump lesson shuck orange.JPG",
		155, 90,
		"Shuck emerger or.1", "Bead Shuck Emerger Orange",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1176988270.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[743] = new Element(
		743, "assets/thumb/umptung teaser.JPG",
		115, 80,
		"Barrtung1", "Barrs Tung Teaser",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1490946909.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[744] = new Element(
		744, "assets/thumb/ump charlie hopper tan 1.JPG",
		200, 132,
		"Charlie boy tan1", "Charlie Boy Hopper Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;10@", "pd-437742791.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[745] = new Element(
		745, "assets/thumb/ump smelt 1.JPG",
		175, 75,
		"Smeltump1", "Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;8@", "pd-1168247950.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[746] = new Element(
		746, "assets/thumb/ump tung wd40 olive.JPG",
		90, 75,
		"yung wd 40umpoli1", "Tungsten WD-40 Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd1381613617.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[747] = new Element(
		747, "assets/thumb/ump poxy bwo.JPG",
		195, 105,
		"poxyback bwo ump1", "Mercer Poxyback Emerger BWO",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1338838524.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[748] = new Element(
		748, "assets/thumb/ump turks red.JPG",
		220, 134,
		"turksred1", "Turks Trantula Red",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;10@", "pd-1069770685.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[749] = new Element(
		749, "assets/thumb/ump chern tan black.JPG",
		148, 100,
		"Chern ump tan black", "Chernobyl Ant Tan/Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;12@", "pd1429401910.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[750] = new Element(
		750, "assets/thumb/dry dust 1.JPG",
		150, 313,
		"docsdust", "Docs Dry Dust",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "18",
		"", "pd-1127550779.htm",
		"", 1,
		"Dressings", "0",
		 0)
	
		Entry[751] = new Element(
		751, "assets/thumb/disc head gray.JPG",
		250, 140,
		"Chocdisv1", "Chockletts Disc Head Slider Size 1/0 Gray/White",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "103",
		"Size;1/0@", "pd196655227.htm",
		"", 1,
		"SaltUmpq", "0",
		 0)
	
		Entry[752] = new Element(
		752, "assets/thumb/fur ball gray.JPG",
		250, 127,
		"FurballGray1", "Furball Murphy/Ehlers Gary/Silver ",
		"", "",
		"2.7", "0",
		"1", 1,
		"Pieces", "103",
		"Size;4@", "pd1660673742.htm",
		"", 1,
		"SaltUmpq", "0",
		 0)
	
		Entry[753] = new Element(
		753, "assets/thumb/30 bh a.JPG",
		180, 241,
		"30BHNymphs", "30 Bead Head Nymphs",
		"", "",
		"29.95", "0",
		"1", 1,
		"Pieces", "98",
		"", "pd-1548006595.htm",
		"", 1,
		"Nymph sets", "0",
		 0)
	
		Entry[754] = new Element(
		754, "assets/thumb/22bh a.JPG",
		180, 194,
		"22BHNymphs", "22 Bead Head Nymphs",
		"", "",
		"22.95", "0",
		"1", 1,
		"Pieces", "98",
		"", "pd-1022134349.htm",
		"", 1,
		"Nymph sets", "0",
		 0)
	
		Entry[755] = new Element(
		755, "assets/thumb/brassie 1.JPG",
		150, 140,
		"Ultrawirebrassie1", "Ultra Wire Brassie",
		"For sizes 18-20", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "52",
		"Color;Amber@", "pd-1802184175.htm",
		"", 1,
		"TW", "0",
		 0)
	
		Entry[756] = new Element(
		756, "assets/thumb/wire med 1.JPG",
		150, 142,
		"Ultrawiremedium Amber", "Ultra Wire Medium",
		"For hook sizes 18 and larger", "",
		"1.45", "0",
		"1", 1,
		"Pieces", "52",
		"Color;Amber@", "pd-669232349.htm",
		"", 1,
		"TW", "0",
		 0)
	
		Entry[757] = new Element(
		757, "assets/thumb/fly fur  1.JPG",
		125, 148,
		"Ice Fur1", "Ice Fur",
		"", "",
		"2.4", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Chartreuse@", "pd1446429861.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[758] = new Element(
		758, "assets/thumb/deceiver kit 1.JPG",
		150, 279,
		"deceiver kit", "Leftys Deceiver Kit",
		"Materials and instructions to produce 24 deceivers in the most popular sizes and colors", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd-2055370810.htm",
		"", 1,
		"Fly Tyingk", "0",
		 0)
	
		Entry[759] = new Element(
		759, "assets/thumb/gadget pack 1.JPG",
		200, 196,
		"gadgetpack", "Gadget Pack",
		"Includes large gripple foam box with an Umpqua Nipper, Tie Fast Knot Tyer, &amp; Hemostat.", "",
		"29.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1300426802.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[760] = new Element(
		760, "assets/thumb/Bunker Olive (2).jpg",
		220, 115,
		"EnricounkOlive", "Bunker Olive Size 1/0",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "81",
		"", "pd-96004258.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[761] = new Element(
		761, "assets/thumb/enrico blue back herring 1.JPG",
		220, 80,
		"blueback herring 20", "Blue Back Herring",
		"4&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "81",
		"Size;2/0@", "pd-2072526871.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[762] = new Element(
		762, "assets/thumb/enrico mackerel 1.JPG",
		220, 80,
		"enrico macketel", "Mackerel Size 3/0",
		"5&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "81",
		"Size;3/0@", "pd1278107924.htm",
		"", 1,
		"Enrico", "0",
		 0)
	
		Entry[763] = new Element(
		763, "assets/thumb/dbunny olive 1.JPG",
		150, 77,
		"Doublbunnolive", "Double Bunny Olive/White Size 1/0",
		"5&quot; Long", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "91",
		"Size;1/0@", "pd1368495675.htm",
		"", 1,
		"SWDB", "0",
		 0)
	
		Entry[764] = new Element(
		764, "assets/thumb/dbunny chart black 1.JPG",
		150, 76,
		"Double bunnybk chart", "Double Bunny Black/Chartreuse Size 1/0",
		"Approximately 3 1/2 inches long", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "91",
		"Size;1/0@", "pd1766119310.htm",
		"", 1,
		"SWDB", "0",
		 0)
	
		Entry[765] = new Element(
		765, "assets/thumb/sardina.JPG",
		220, 101,
		"Sardina", "Sardina Size 1/0",
		"Approximately 4 Inches Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd620043005.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[766] = new Element(
		766, "assets/thumb/Scad.JPG",
		220, 106,
		"Scad", "Scad (Horse Mackerel) Size 1/0",
		"Approximately 4 Inches Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "88",
		"", "pd115920243.htm",
		"", 1,
		"Slinkyfibr", "0",
		 0)
	
		Entry[767] = new Element(
		767, "assets/thumb/new copper black 1.JPG",
		125, 59,
		"newagecopper1", "New Age Bugger Copper/Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd-999498535.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[768] = new Element(
		768, "assets/thumb/bh new copper black 1.JPG",
		125, 60,
		"BHnewagecopper1", "BH New Age Copper/Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;10@", "pd-738527598.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[769] = new Element(
		769, "assets/thumb/halloween 1.JPG",
		125, 49,
		"BHhalloween1", "B.H. New age Halloween",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;10@", "pd1736283373.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[770] = new Element(
		770, "assets/thumb/leech dumb purple 1.JPG",
		125, 82,
		"eggleechdumbpurple 8", "Egg Sucking Leech Winter Run Purple",
		"With Dumbell Eyes", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;8@", "pd1521954932.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[771] = new Element(
		771, "assets/thumb/leech dumb copper 1.JPG",
		125, 76,
		"Eggsuckdumbleech 8", "Egg Sucking Leech Copper/Black",
		"With Dumbell Eyes", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;8@", "pd-737958719.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[772] = new Element(
		772, "assets/thumb/egg leech bk. pearl 1.JPG",
		125, 69,
		"leechBkpearl1", "Egg Sucking Leech Black/Pearl",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd156079834.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[773] = new Element(
		773, "assets/thumb/egg leech purple 1.JPG",
		125, 72,
		"Leechpurple", "Egg Sucking Leech Purple",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd-1639525489.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[774] = new Element(
		774, "assets/thumb/tung choc.JPG",
		85, 75,
		"tunked40choc1", "Tungsten WD-40 Chocalate",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd1319560304.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[775] = new Element(
		775, "assets/thumb/muddler ump 1.JPG",
		155, 123,
		"meddlerump", "Muddler Minnow",
		"The Wing is slightly elevated", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd-954295993.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[776] = new Element(
		776, "assets/thumb/whit sculpin 1.JPG",
		225, 95,
		"whithare 4", "Whitlocks Hare Sculpin",
		"With Dumbell Eyes", "",
		"2.4", "0",
		"1", 1,
		"Pieces", "104",
		"Size;4@", "pd1528856074.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[777] = new Element(
		777, "assets/thumb/extreme trout 1.JPG",
		300, 237,
		"UmpExtremeasst", "Umpqua Extreme Trout Assortment",
		"", "",
		"35.95", "0",
		"1", 1,
		"Pieces", "106",
		"", "pd270425001.htm",
		"", 1,
		"Umpqua Fly", "0",
		 0)
	
		Entry[778] = new Element(
		778, "assets/thumb/umpqua nymph 1.JPG",
		300, 256,
		"UmpNymp asst.", "Umpqua Nymph Selection",
		"", "",
		"19.95", "0",
		"1", 1,
		"Pieces", "106",
		"", "pd1975332351.htm",
		"", 1,
		"Umpqua Fly", "0",
		 0)
	
		Entry[779] = new Element(
		779, "assets/thumb/striper asst 1.JPG",
		400, 245,
		"Umpquastriperasst", "Striper/Bluefish Assortment",
		"Comes with an Infinite Divider Fly Box", "",
		"29.95", "0",
		"1", 1,
		"Pieces", "106",
		"", "pd-658186171.htm",
		"", 1,
		"Umpqua Fly", "0",
		 0)
	
		Entry[780] = new Element(
		780, "assets/thumb/trout hatch box 1.JPG",
		250, 201,
		"ump.eastern asst", "Eastern Trout Hatchbox",
		"Packaged in boxes of New Zealand hardwoods with foam inserts and Magnetic Clousers.", "",
		"160", "0",
		"1", 1,
		"Pieces", "106",
		"", "pd-1037711711.htm",
		"", 1,
		"Umpqua Fly", "0",
		 0)
	
		Entry[781] = new Element(
		781, "assets/thumb/red skin sq 1.JPG",
		200, 275,
		"RedSquirrelSkin", "Red Squirrel Skin",
		"", "",
		"9.5", "0",
		"1", 1,
		"Pieces", "34",
		"", "pd1924624823.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[782] = new Element(
		782, "assets/images/nopicture.gif",
		55, 38,
		"Arizona Dub1", "Arizona Synthetic Peacock dubbing",
		"Simulates natural peacock", "",
		"2.4", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Natural@", "pd-638014787.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[783] = new Element(
		783, "assets/thumb/sili barred 1.JPG",
		110, 136,
		"Sili Barred1", "Sili-Legs Barred",
		"", "",
		"2.15", "0",
		"1", 1,
		"Pieces", "49",
		"Sili-Leg Barred Colors;Clear/Pearl@", "pd1346870325.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[784] = new Element(
		784, "assets/thumb/tying kit 1.JPG",
		150, 349,
		"Umptying Kit", "Umpqua Tying Tool Kit",
		"", "",
		"34.5", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-343630116.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[785] = new Element(
		785, "assets/thumb/ring dyed tail 1.JPG",
		150, 221,
		"ringcenterpr. bk.", "Ringneck Pheasant Center Tail Pair",
		"1 Pair/ Pack", "",
		"2.2", "0",
		"1", 1,
		"Pieces", "38",
		"Color;Black@", "pd-1081962390.htm",
		"", 1,
		"PT", "0",
		 0)
	
		Entry[786] = new Element(
		786, "assets/images/nopicture.gif",
		55, 38,
		"Pliable Pearl sheet", "Prismatic Pliable Pearl Sheet Back",
		"4 1/2 x 10 Inches", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "47",
		"", "pd833448667.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[787] = new Element(
		787, "assets/thumb/MPMT (2) thunb.jpg",
		200, 195,
		"MPMT", "The MP Magic Tool Clip Set",
		"", "",
		"36.95", "0",
		"1", 1,
		"Pieces", "56",
		"", "pd-413688717.htm",
		"", 1,
		"FTT", "0",
		 0)
	
		Entry[788] = new Element(
		788, "assets/thumb/hook (2) thumb.jpg",
		125, 90,
		"C68SSS 1/0", "C68S SS Tarpon Hook 25/pack",
		"Curved, 2X strong, 2X short, straight eye, stainless steel. Saltwater", "",
		"7.7", "0",
		"1", 1,
		"Pieces", "29",
		"Size;1/0@", "pd-1502374900.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[789] = new Element(
		789, "assets/images/nopicture.gif",
		55, 38,
		"FHBlack", "Fishair",
		"", "",
		"3.1", "0",
		"1", 1,
		"Pieces", "50",
		"Color;Black@", "pd-543774913.htm",
		"", 1,
		"Syn", "0",
		 0)
	
		Entry[790] = new Element(
		790, "assets/thumb/integrity 1.JPG",
		300, 167,
		"Ocuma Integrity", "Okuma Integrity Large Arbor Reel",
		"Model I-5/6", "",
		"74.5", "0",
		"1", 1,
		"Pieces", "24",
		"Reel Sizes;S 5/6@", "pd-859263184.htm",
		"", 1,
		"Reel", "0",
		 0)
	
		Entry[791] = new Element(
		791, "assets/images/nopicture.gif",
		55, 38,
		"metz #2hen", "Metz hen Neck #2",
		"", "",
		"10.4", "0",
		"1", 1,
		"Pieces", "60",
		"Color;Dyed Black@", "pd-830391155.htm",
		"", 1,
		"Metz", "0",
		 0)
	
		Entry[792] = new Element(
		792, "assets/images/nopicture.gif",
		55, 38,
		"LafTriYarn1", "Lafontaines Tri-Lobal Yarn",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "34",
		"Color;Black@", "pd1493917192.htm",
		"", 1,
		"dUB", "0",
		 0)
	
		Entry[793] = new Element(
		793, "assets/images/nopicture.gif",
		55, 38,
		"stick eye green", "Mylar Stick On Eyes Green/Black",
		"50/Pack", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "5",
		"Sizes;3/16@", "pd-870157.htm",
		"", 1,
		"mylaryes", "0",
		 0)
	
		Entry[794] = new Element(
		794, "assets/thumb/glass bead med 1.JPG",
		125, 223,
		"GlassBeads irr crystal", "Tyers Glass Beads",
		"50/Pack", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "3",
		"Glass Beads Colors;Irr Crysral@", "pd1538632102.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[795] = new Element(
		795, "assets/thumb/glass bead small 1.JPG",
		125, 208,
		"GlassBeadssm sl gold", "Tyers Glass Beads Small",
		"For Hook Sizes 12-18", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "3",
		"Glass Beads Colors;S/L Gold@", "pd2132631339.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[796] = new Element(
		796, "assets/thumb/glass bead midge 1.JPG",
		125, 200,
		"GlassBeadsMidge irr crystal", "Tyers Glass Beads Midge",
		"For Hook Sizes 18-24", "",
		"1.65", "0",
		"1", 1,
		"Pieces", "3",
		"Glass Beads Colors;Irr Crysral@", "pd1774961962.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[797] = new Element(
		797, "assets/thumb/hot beads med 1.JPG",
		100, 249,
		"HotBeads med 1", "Hot Beads Medium 5/32&quot;",
		"24/Pack", "",
		"3.45", "0",
		"1", 1,
		"Pieces", "3",
		"Color;Chartreuse@", "pd53586075.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[798] = new Element(
		798, "assets/thumb/hot beads large 1.JPG",
		100, 247,
		"Hotbeads lg1", "Hot Beads Large 3/16&quot;",
		"24/Pack", "",
		"3.45", "0",
		"1", 1,
		"Pieces", "3",
		"Color;Chartreuse@", "pd776751709.htm",
		"", 1,
		"MISCEYE", "0",
		 0)
	
		Entry[799] = new Element(
		799, "assets/thumb/grizz accent 1.JPG",
		150, 185,
		"Grizz Accent1", "Grizzly Accent",
		"", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "47",
		"Grizzly Accent Colors;Black/Copper 7942@", "pd-567396593.htm",
		"", 1,
		"Flash", "0",
		 0)
	
		Entry[800] = new Element(
		800, "assets/thumb/meko special 1.JPG",
		155, 86,
		"Mekospecial1", "Meko Special",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;6@", "pd-22777442.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[801] = new Element(
		801, "assets/thumb/heywood ghost 1.JPG",
		155, 65,
		"HeywoodGhost1", "Heywood Ghost Shrimp",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "87",
		"Size;4@", "pd-1310529654.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[802] = new Element(
		802, "assets/thumb/banded shrimp 1.JPG",
		155, 65,
		"BandedShrimp1", "Banded Shrimp",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "87",
		"Size;4@", "pd-1275170433.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[803] = new Element(
		803, "assets/thumb/epoxy minn sea gren 1.JPG",
		180, 61,
		"surf Candy seagreen", "Surf Candy Sea FoamGreen",
		"Size 2 3&quot; long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Size;2@", "pd-874495538.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[804] = new Element(
		804, "assets/thumb/needlefish epoxy.JPG",
		220, 71,
		"NeedlefishEpoxy", "Needle Fish Epoxy",
		"Size 2 Long Shank, 6&quot; long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "84",
		"Size;2@", "pd1851591229.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[805] = new Element(
		805, "assets/images/nopicture.gif",
		55, 38,
		"Conehea Med silver", "Cone Heads Med. 25/Pack",
		"Size 2 Long Shank, 6&quot; long", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "2",
		"Color;Silver@", "pd-302015960.htm",
		"", 1,
		"beadcone", "0",
		 0)
	
		Entry[806] = new Element(
		806, "assets/images/nopicture.gif",
		55, 38,
		"Hook Guide", "The Tiemco Guide To Hooks",
		"Free Guide To Tiemco Hooks", "",
		"0", "0",
		"1", 1,
		"Pieces", "30",
		"", "pd1631430235.htm",
		"", 1,
		"TMC", "0",
		 0)
	
		Entry[807] = new Element(
		807, "assets/thumb/Small Epoxy 1.JPG",
		180, 188,
		"Sm epoxy br", "Small Epoxy Minnow Brown/Olive",
		"2 Inches Long", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "73",
		"Color;Brown/Olive@", "pd701596051.htm",
		"", 1,
		"140", "0",
		 0)
	
		Entry[808] = new Element(
		808, "assets/thumb/emergent pupa 1.JPG",
		150, 117,
		"Emergsparkpupa gin 14", "Emergent Sparkle Pupa",
		"Available in four colors", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "94",
		"Color & Size;Ginger Size 14@", "pd1229460726.htm",
		"", 1,
		"c", "0",
		 0)
	
		Entry[809] = new Element(
		809, "assets/images/nopicture.gif",
		55, 38,
		"Zap goo", "Zap A-Dap-A Goo",
		"One of the many uses is glueing eyes on larger patterns.", "",
		"5.85", "0",
		"1", 1,
		"Pieces", "48",
		"", "pd934157164.htm",
		"", 1,
		"Glue", "0",
		 0)
	
		Entry[810] = new Element(
		810, "assets/images/nopicture.gif",
		55, 38,
		"Ewingsuperwooly1", "Ewing Super Wooly Bugger Patch",
		"", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "58",
		"Color;Black@", "pd-67592326.htm",
		"", 1,
		"Ewing", "0",
		 0)
	
		Entry[811] = new Element(
		811, "assets/images/nopicture.gif",
		55, 38,
		"EwingMiniDeceiver1", "Ewing Mini Deceiver Patches",
		"", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "58",
		"Color;Chartreuse@", "pd-1866318396.htm",
		"", 1,
		"Ewing", "0",
		 0)
	
		Entry[812] = new Element(
		812, "assets/images/nopicture.gif",
		55, 38,
		"Ewing body marab.1", "Ewing Body &amp; Marabou Patch",
		"", "",
		"9.95", "0",
		"1", 1,
		"Pieces", "58",
		"Color;Grizzly Dyed Brown@", "pd506485992.htm",
		"", 1,
		"Ewing", "0",
		 0)
	
		Entry[813] = new Element(
		813, "assets/images/nopicture.gif",
		55, 38,
		"mustad 34007", "Mustad 34007 100 Pack",
		"Stainless Steel Saltwater Hook", "",
		"12.5", "0",
		"1", 1,
		"Pieces", "29",
		"Size;2@", "pd961449666.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[814] = new Element(
		814, "assets/thumb/double humpy orange.JPG",
		130, 104,
		"D. Humpy Orange1", "Double Humpy Orange",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;10@", "pd-1919618111.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[815] = new Element(
		815, "assets/thumb/double humpy yellow.JPG",
		130, 109,
		"D. Humpy Yellow1", "Double Humpy Yellow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "7",
		"Size;10@", "pd266188627.htm",
		"", 1,
		"A", "0",
		 0)
	
		Entry[816] = new Element(
		816, "assets/thumb/wool sculpin olive a.JPG",
		220, 119,
		"Wool Sculpin Olive1", "Wool Sculpin Olive",
		"", "",
		"1.5", "0",
		"1", 1,
		"Pieces", "65",
		"Size;2@", "pd390750037.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[817] = new Element(
		817, "assets/thumb/squid a.JPG",
		250, 101,
		"Squid", "Squid Size 3/0",
		"Approx. length 7&quot;", "",
		"3.75", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd1374279345.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[818] = new Element(
		818, "assets/thumb/joes smelt turr A.JPG",
		150, 70,
		"Joes Smelt1", "Joes Smelt",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "68",
		"Size;12@", "pd-1649917881.htm",
		"", 1,
		"SS", "0",
		 0)
	
		Entry[819] = new Element(
		819, "assets/thumb/clouser kit A.JPG",
		150, 323,
		"Clouser Kit", "Clouser Deep Minnow Kit",
		"Materials and instructions to tie 24 deep minnows in the most productive sizes and colors.", "",
		"16.95", "0",
		"1", 1,
		"Pieces", "31",
		"", "pd1864186563.htm",
		"", 1,
		"Fly Tyingk", "0",
		 0)
	
		Entry[820] = new Element(
		820, "assets/thumb/uni mono.JPG",
		100, 70,
		"Unimono fin cl.", "Uni-Mono fine/clear",
		"", "",
		"1.75", "0",
		"1", 1,
		"Pieces", "51",
		"", "pd-1856877911.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[821] = new Element(
		821, "assets/thumb/cdc puffs a.JPG",
		150, 209,
		"CDCoilerpuffs1", "CDC Oiler Puffs",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Lt. Dun@", "pd1726919935.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[822] = new Element(
		822, "assets/thumb/weedguards A.JPG",
		100, 107,
		"Weedguardstainless", "Weed Guards Stainless Steel",
		"10/Pack", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "49",
		"", "pd-18323011.htm",
		"", 1,
		"MFT", "0",
		 0)
	
		Entry[823] = new Element(
		823, "assets/thumb/barred cdc A.JPG",
		150, 165,
		"Barred cdc1", "Barred CDC",
		"Approx 50 feathers /pack", "",
		"2.3", "0",
		"1", 1,
		"Pieces", "37",
		"Color;Light Brown@", "pd321894963.htm",
		"", 1,
		"PL.", "0",
		 0)
	
		Entry[824] = new Element(
		824, "assets/thumb/hour glass eyes silver A.JPG",
		100, 120,
		"Hourglass silver sm", "Hour Glass Eyes Silver",
		"20/Pack", "",
		"2.1", "0",
		"1", 1,
		"Pieces", "4",
		"Size;S@", "pd-1969603787.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[825] = new Element(
		825, "assets/thumb/okuma box 6 small A.JPG",
		200, 158,
		"Okuma Box small", "Okuma Fly Box Small 6 Windows",
		"3 1/2&quot; x 2 3/8&quot; x 1&quot;", "",
		"17.1", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd1540520412.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[826] = new Element(
		826, "assets/thumb/okuma box 10 compt A.JPG",
		200, 175,
		"Okuma box 10 windows", "Okuma Fly Box Lg. 10 Windows",
		"6&quot; x 3 1/2&quot; x 1 1/8&quot;", "",
		"24.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd999285610.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[827] = new Element(
		827, "assets/thumb/okuma box 16 compt A.JPG",
		200, 177,
		"Okuma box 16 windows", "Okuma Fly Box Lg. 16 Windows",
		"6&quot; x 3 1/2&quot; x 1 1/8&quot;", "",
		"25.95", "0",
		"1", 1,
		"Pieces", "19",
		"", "pd300277672.htm",
		"", 1,
		"Fly Box", "0",
		 0)
	
		Entry[828] = new Element(
		828, "assets/thumb/barry chartreuse A.JPG",
		220, 97,
		"BarryPikeChart", "Barry&rsquo;s Pike Fly Chartreuse Size 2/0",
		"Approximately 4 1/2&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-746693758.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[829] = new Element(
		829, "assets/thumb/barry black A.JPG",
		220, 98,
		"BarryPikeBlack", "Barry&rsquo;s Pike Fly Black Size 2/0",
		"Approximately 4 1/2&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-2125564544.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[830] = new Element(
		830, "assets/thumb/barry red white A.JPG",
		220, 84,
		"BarryPike red whit", "Barry&rsquo;s Pike Fly Red/White",
		"Approximately 4 1/2&quot; Long", "",
		"2.25", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-1143318610.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[831] = new Element(
		831, "assets/images/nopicture.gif",
		55, 38,
		"Mustad1003906B 14", "Mustad 3906B",
		"100/Pack", "",
		"9.4", "0",
		"1", 1,
		"Pieces", "29",
		"Size;14@", "pd1573870128.htm",
		"", 1,
		"Mustad", "0",
		 0)
	
		Entry[832] = new Element(
		832, "assets/thumb/squid purple.JPG",
		250, 90,
		"Squid pur", "Squid White/Pink Size 4/0",
		"Approximately 6&quot; in length", "",
		"3.5", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd694160700.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[833] = new Element(
		833, "assets/thumb/bunny bugger olive 1 A.JPG",
		125, 55,
		"BunnyBugger olive1", "Bunny Bugger Olive",
		"A variation of the wooly bugger with a rabbit strip tail for added movement.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd-1030150710.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[834] = new Element(
		834, "assets/thumb/bunny bugger black 1 A.JPG",
		125, 70,
		"Bunny Bugger Black 4", "Bunny Bugger Black",
		"A variation of the wooly bugger with a rabbit strip tail for added movement.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd-1299679553.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[835] = new Element(
		835, "assets/thumb/bunny bugger white 1 A.JPG",
		125, 69,
		"Bunny Bugger White 4", "Bunny Bugger White",
		"A variation of the wooly bugger with a rabbit strip tail for added movement.", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "70",
		"Size;4@", "pd-521860384.htm",
		"", 1,
		"WB", "0",
		 0)
	
		Entry[836] = new Element(
		836, "assets/thumb/rabbit diver black A.JPG",
		220, 94,
		"Rabbitdiver black", "Rabbit Strip Diver Black Size 1/0",
		"5 Inches Long", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-1775495637.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[837] = new Element(
		837, "assets/thumb/rabbit diver chartreuse A.JPG",
		220, 90,
		"Rabbitstripdiverchar", "Rabbit Strip Diver Chartreuse Size 1/0",
		"5 Inches Long", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd-310037423.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[838] = new Element(
		838, "assets/thumb/rabbit diver white A.JPG",
		220, 97,
		"Rabbitstripdiv white", "Rabbit Strip Diver White Size 1/0",
		"5 Inches Long", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd1318409959.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[839] = new Element(
		839, "assets/thumb/rabbit diver red A.JPG",
		220, 85,
		"Rabbit stripdiv red", "Rabbit Strip Diver Red/White Size 1/0",
		"5 Inches Long", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd585618285.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[840] = new Element(
		840, "assets/thumb/diving bait red A.JPG",
		220, 99,
		"Swimmingbait red", "Swimming Baitfish Red Head Size 1/0",
		"3 Inches Long", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "65",
		"", "pd1159592803.htm",
		"", 1,
		"FB101", "0",
		 0)
	
		Entry[841] = new Element(
		841, "assets/images/nopicture.gif",
		55, 38,
		"Hourglass gold med", "Hour Glass Eyes Gold",
		"20/Pack", "",
		"2.1", "0",
		"1", 1,
		"Pieces", "4",
		"Size;M@", "pd726629449.htm",
		"", 1,
		"MONOLEAD", "0",
		 0)
	
		Entry[842] = new Element(
		842, "assets/images/nopicture.gif",
		55, 38,
		"FlatDiamo braid1", "Flat Diamond Braid",
		"", "",
		"1.95", "0",
		"1", 1,
		"Pieces", "51",
		"Color;Black@", "pd-718477246.htm",
		"", 1,
		"threa", "0",
		 0)
	
		Entry[843] = new Element(
		843, "assets/thumb/stealth leader.JPG",
		125, 170,
		"umpqleader stealth1", "Umpqua Weight-Forward Stealth Leader 12 Foot Long.",
		"12 Foot Long 20% Off The  Umpqua Stealth Leader", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "25",
		"Leaders;3 LB 6X@", "pd-698971811.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[844] = new Element(
		844, "assets/thumb/salt leader.JPG",
		125, 169,
		"AUmpqSalt leader 10#", "Umpqua Saltwater Leader 9 1/2&rsquo;, 10 Lb.",
		"20% off The Umpqua Saltwater Leader", "",
		"2.95", "0",
		"1", 1,
		"Pieces", "25",
		"", "pd-1536713466.htm",
		"", 1,
		"Umpqua Lea", "0",
		 0)
	
		Entry[845] = new Element(
		845, "assets/thumb/march brown wet.JPG",
		80, 80,
		"Marchwet1", "March Brown Partridge/Hare&rsquo;s Ear Wet Fly",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "107",
		"Size;16@", "pd914563748.htm",
		"", 1,
		"wet fly", "0",
		 0)
	
		Entry[846] = new Element(
		846, "assets/thumb/joes shrimp A.JPG",
		155, 96,
		"Joesshrimp1", "Joes Shrimp",
		"", "",
		"2.75", "0",
		"1", 1,
		"Pieces", "87",
		"Size;4@", "pd-1096623758.htm",
		"", 1,
		"sh", "0",
		 0)
	
		Entry[847] = new Element(
		847, "assets/thumb/bone crusher A.JPG",
		155, 112,
		"Bonecrusher", "Bone crusher Size 6",
		"", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"", "pd1732383902.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[848] = new Element(
		848, "assets/thumb/bonefish scampi A.JPG",
		155, 118,
		"Cowensbonescampi1", "Cowens Bonefish Scampi",
		"Size 2 and 4 have lead eyes. Size 6 has bead chain eyes for a lighter entry.", "",
		"1.25", "0",
		"1", 1,
		"Pieces", "79",
		"Size;2@", "pd1078313980.htm",
		"", 1,
		"Cr", "0",
		 0)
	
		Entry[849] = new Element(
		849, "assets/thumb/suid crease fly A.JPG",
		250, 126,
		"CreaseSquid", "Crease Fly Squid Size 4/0 Long Shank",
		"7&quot; Long", "",
		"5.5", "0",
		"1", 1,
		"Pieces", "84",
		"", "pd-445602610.htm",
		"", 1,
		"Large Bait", "0",
		 0)
	
		Entry[850] = new Element(
		850, "assets/thumb/match minnow black nose dace 1.JPG",
		175, 65,
		"MatchminnowBknosedac", "Match The Minnow Black Nose Dace Size 2",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd1212256172.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[851] = new Element(
		851, "assets/thumb/match minnow golden shiner 1.JPG",
		175, 65,
		"Match Minnow Goldens", "Match The Minnow Golden Shiner Size 2",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd1061301690.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[852] = new Element(
		852, "assets/thumb/match minnow yellow shiner 1.JPG",
		175, 80,
		"MatchMinnowYellow", "Match The Minnow Yellow Shiner Size 2",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd592474744.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[853] = new Element(
		853, "assets/thumb/match minnow trout salmon 1.JPG",
		175, 80,
		"MatchMinnowTroutsal", "Match The Minnow Trout/Salmon Size 2",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd2069462374.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[854] = new Element(
		854, "assets/thumb/conehead streamer gold 1.JPG",
		175, 123,
		"ConeheadStreamer Gol", "Conehead Streamer Gold Shiner Size 8",
		"2 1/2 Inches Long", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd505248260.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[855] = new Element(
		855, "assets/thumb/gb autumn splender 1.JPG",
		175, 129,
		"GBAutumnSplender1", "Gold Bead Autumn Splender",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd488013778.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[856] = new Element(
		856, "assets/thumb/simmons fry grey 1.JPG",
		175, 129,
		"Fry Simmons1", "Fry Simmons",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;10@", "pd-436602863.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[857] = new Element(
		857, "assets/thumb/matuka sculpin ump 1.JPG",
		175, 107,
		"Matuka Sculpinwhitol1", "Matuka Sculpin, Whitlocks Olive",
		"Size 2 is 3&quot; Long and size 6 is 2 &quot; Long.", "",
		"2.8", "0",
		"1", 1,
		"Pieces", "104",
		"Size;2@", "pd-1433513171.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[858] = new Element(
		858, "assets/thumb/becks bugger olive 1.JPG",
		175, 150,
		"BecksBuggerOlive1", "Super Bugger, Becks Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd714831881.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[859] = new Element(
		859, "assets/thumb/becks bugger black 1.JPG",
		175, 137,
		"Becksbuggerblack1", "Super Bugger, Becks Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd-1479572827.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[860] = new Element(
		860, "assets/thumb/becks bugger Tan 1.JPG",
		175, 136,
		"BecksbuggerTan1", "Super Bugger, Becks Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd-271429887.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[861] = new Element(
		861, "assets/thumb/hornberg ump 1.JPG",
		175, 130,
		"Hornberg Umpqua1", "Hornberg",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;10@", "pd492927261.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[862] = new Element(
		862, "assets/thumb/Lawson Brown Drake.JPG",
		116, 92,
		"BrownDrakeLawsons1", "Brown Drake, Lawsons",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;10@", "pd-2094244615.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[863] = new Element(
		863, "assets/thumb/Grey Fox Ump.JPG",
		116, 84,
		"GrayFosUmpqua1", "Gray Fox",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;12@", "pd-588250780.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[864] = new Element(
		864, "assets/thumb/ak red quill spin.JPG",
		116, 86,
		"Redquillspinak1", "Red Quill Spinner Ak",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;14@", "pd488583088.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[865] = new Element(
		865, "assets/thumb/Zing Wing Damsel 1.JPG",
		185, 142,
		"Adult Damsel Blue", "Adult Damsel Blue",
		"Size 14", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"", "pd218315533.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[866] = new Element(
		866, "assets/thumb/poxy trico.JPG",
		90, 85,
		"PoxyTrico1", "Poxyback Trico",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;20@", "pd2037525507.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[867] = new Element(
		867, "assets/thumb/poxy hendrickson.JPG",
		140, 100,
		"PoxybackHendrickson1", "Poxyback Hendrickson",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;12@", "pd17045494.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[868] = new Element(
		868, "assets/thumb/poxy sulpher.JPG",
		125, 100,
		"Poxyback Sulpher ump1", "Poxyback Sulpher",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1977901922.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[869] = new Element(
		869, "assets/thumb/poxy east green drake.JPG",
		185, 115,
		"Poxyback Egreendrake1", "Poxyback Eastern Green Drake",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;10@", "pd1997512078.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[870] = new Element(
		870, "assets/thumb/poxy baites.JPG",
		130, 90,
		"Poxyback Baetis ump1", "Poxyback Baetis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd1853949240.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[871] = new Element(
		871, "assets/thumb/glasstail cad drowned amber.JPG",
		125, 145,
		"GlassDrownedAmber1", "Glasstail Drowned Caddis Amber",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd-1689077564.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[872] = new Element(
		872, "assets/thumb/glasstail cad drowned olive.JPG",
		140, 115,
		"GlassDrownedolive1", "Glasstail Drowned Caddis Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd-612950768.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[873] = new Element(
		873, "assets/thumb/Sulpher Comparadun 1 B.jpg",
		110, 85,
		"DP011", "Sulpher comparadun",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd-1911338279.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[874] = new Element(
		874, "assets/thumb/March Brown Comparadun.JPG",
		110, 133,
		"MBC1", "March Brown Comparadun",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;12@", "pd455119093.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[875] = new Element(
		875, "assets/thumb/thorax dorthea.JPG",
		130, 115,
		"DCD3", "Thorax Dun Dorthea",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;18@", "pd895425022.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[876] = new Element(
		876, "assets/thumb/thorax olive.JPG",
		110, 100,
		"TDO1", "Thorax Dun Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd208983587.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[877] = new Element(
		877, "assets/thumb/Thorax Trico A.JPG",
		100, 84,
		"TDT 22", "Thorax Dun Trico",
		"Size 22", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;22@", "pd-1460062028.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[878] = new Element(
		878, "assets/images/nopicture.gif",
		55, 38,
		"olivesparkdun1", "Olive Sparkle Dun",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd-1744185424.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[879] = new Element(
		879, "assets/thumb/cdc biot comp bwo.JPG",
		80, 50,
		"cdcbiotbwo", "CDC Biot Comparadun BWO",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd-1009908930.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[880] = new Element(
		880, "assets/thumb/cdc biot comp sulpher.JPG",
		80, 64,
		"cdcbiotsulpher", "CDC Biot Comparadun Sulpher",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd1070094957.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[881] = new Element(
		881, "assets/thumb/cdc biot mahogony.JPG",
		80, 71,
		"cdcbiotmah", "CDC Biot Comparadun Mahogany",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd-519809688.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[882] = new Element(
		882, "assets/thumb/cdc biot gray.JPG",
		80, 62,
		"cdcbiotgray1", "CDC Biot Comparadun Gray",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;16@", "pd1241312244.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[883] = new Element(
		883, "assets/thumb/cdc biot trico.JPG",
		80, 80,
		"cdcbiottrico", "CDC Biot Comparadun Trico",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "9",
		"Size;20@", "pd1519674176.htm",
		"", 1,
		"DCP", "0",
		 0)
	
		Entry[884] = new Element(
		884, "assets/thumb/Light Elk 1 B.jpg",
		110, 80,
		"DC201", "Elk hair caddis Light",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd1499689636.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[885] = new Element(
		885, "assets/thumb/deer olive.JPG",
		88, 92,
		"DC011", "Deer hair caddis olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd1924305393.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[886] = new Element(
		886, "assets/thumb/reverse.JPG",
		82, 82,
		"DC091", "Reverse hair wing",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd242343754.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[887] = new Element(
		887, "assets/thumb/black elk hi vis.JPG",
		92, 98,
		"BHC1", "Hi-Vis Black Elk Hair Caddis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-591960067.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[888] = new Element(
		888, "assets/thumb/black elk.JPG",
		98, 88,
		"BHC11", "Black Elk Hair Caddis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd157333423.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[889] = new Element(
		889, "assets/thumb/brown elk.JPG",
		98, 76,
		"BEC1", "Brown Elk Hair Caddis",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd1156450430.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[890] = new Element(
		890, "assets/thumb/henryville.JPG",
		110, 110,
		"Henrvspec1", "Henryville Special",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-510476648.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[891] = new Element(
		891, "assets/thumb/spent part.JPG",
		105, 105,
		"spentpartcaddis1", "Spent Partridge Caddis Peacock",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd785439358.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[892] = new Element(
		892, "assets/thumb/cdc caddis Olive 1.JPG",
		84, 90,
		"cdccaddisolive1", "CDC Adult Caddis Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-793221918.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[893] = new Element(
		893, "assets/thumb/cdc caddis gray.JPG",
		80, 76,
		"cdccaddisgray1", "CDC Adult Caddis Gray",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;16@", "pd-2040479369.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[894] = new Element(
		894, "assets/thumb/alder fly.JPG",
		164, 98,
		"Alder1", "Alder Fly",
		"Zebra Caddis", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;12@", "pd-1975588260.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[895] = new Element(
		895, "assets/thumb/Hot Butt Caddis Peacock1.jpg",
		90, 90,
		"HotButtcadpeacock1", "Hot Butt Caddis Peacock",
		"With CDC as an underwing", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-1981410785.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[896] = new Element(
		896, "assets/thumb/egg caddis tan.JPG",
		125, 100,
		"EggCaddisTan1", "Egg Laying Caddis Tan",
		"With A Foam Back and Yellow Egg Sack", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd1303204380.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[897] = new Element(
		897, "assets/thumb/egg caddis Black.JPG",
		130, 110,
		"EggCaddisBlack1", "Egg Laying Caddis Black",
		"With A Foam Back and Yellow Egg Sack", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd1839588716.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[898] = new Element(
		898, "assets/thumb/hi vis caddis o.JPG",
		135, 120,
		"Hiviscaddisolive1", "Hi-Vis Caddis Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd88147556.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[899] = new Element(
		899, "assets/thumb/cdc caddis black 1.JPG",
		102, 110,
		"CDCcaddis black1", "CDC Adult Caddis Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "8",
		"Size;14@", "pd-1943638874.htm",
		"", 1,
		"DC", "0",
		 0)
	
		Entry[900] = new Element(
		900, "assets/thumb/Stick sharp.JPG",
		100, 180,
		"sticksharp", "Stick-Em Hook Sharpner",
		"", "",
		"4.25", "0",
		"1", 1,
		"Pieces", "23",
		"", "pd-1147698496.htm",
		"", 1,
		"misc fly", "0",
		 0)
	
		Entry[901] = new Element(
		901, "assets/thumb/TP Flashback Stone Black.JPG",
		195, 84,
		"TPFlashStoneBlack6", "T.P.&rsquo;s Flashback Stone Rubberlegs Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;6@", "pd551611176.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[902] = new Element(
		902, "assets/thumb/ez Zoner Tan Pearl.JPG",
		250, 92,
		"EZZonkerTanPearl 2", "E-Z Zonker Tan/Pearl",
		"", "",
		"2.1", "0",
		"1", 1,
		"Pieces", "103",
		"Size;2@", "pd-339976780.htm",
		"", 1,
		"SaltUmpq", "0",
		 0)
	
		Entry[903] = new Element(
		903, "assets/thumb/American Alevin Thumb.jpg",
		175, 102,
		"American Alevin", "American Alevin (Fry) Size 10",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"", "pd1649986306.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[904] = new Element(
		904, "assets/thumb/CH Kiwi Muddler Black Thumb.jpg",
		170, 109,
		"CHKiwiMuddlerBlack 6", "Conehead Kiwi Muddler Black",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd-974791423.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[905] = new Element(
		905, "assets/thumb/CH Kiwi Muddler Olive Thumb.jpg",
		170, 83,
		"CHKiwiMuddlerOlive 6", "Conehead Kiwi Muddler Olive",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd-730681076.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[906] = new Element(
		906, "assets/thumb/CH Kiwi Muddler Yellow Thumb.jpg",
		170, 87,
		"CHKiwiMuddlerYellow 6", "Conehead Kiwi Muddler Yellow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "104",
		"Size;6@", "pd-234424685.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[907] = new Element(
		907, "assets/thumb/Flying Circus Caddis Chart.jpg",
		133, 106,
		"FlyCircusCaddisChart 8", "Flying Circus Caddis Chartreuse Head",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;8@", "pd156203486.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[908] = new Element(
		908, "assets/thumb/Flying Circus Caddis Orange.JPG",
		143, 109,
		"FlyCircusCaddisOrang 8", "Flying Circus Caddis Orange",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;8@", "pd1004274061.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[909] = new Element(
		909, "assets/thumb/Royal Wulff.JPG",
		149, 114,
		"RoyalWulffUmp 14", "Royal Wulff",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;14@", "pd1278938303.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[910] = new Element(
		910, "assets/thumb/White Wulff Ump..JPG",
		166, 114,
		"WjiteWulffUmp 12", "White Wulff",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;12@", "pd1614760160.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[911] = new Element(
		911, "assets/thumb/Tung Copper John Chart.JPG",
		98, 60,
		"TungCopperJohnChartUmp 18", "Tungsten Copper John Chartreuse",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd-294533396.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[912] = new Element(
		912, "assets/thumb/Gummy minnow MOP Small.JPG",
		196, 112,
		"GummyMinnowMOPSmUmp 8", "Gummy Minnow Mother Of Pearl",
		"", "",
		"2.35", "0",
		"1", 1,
		"Pieces", "104",
		"Size;8@", "pd250103283.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[913] = new Element(
		913, "assets/thumb/Gummy minnow Blue Small.JPG",
		210, 120,
		"GummyMinnBlueSmUmp 8", "Gummy Minnow Blue",
		"1 Inch Long Size 8", "",
		"2.35", "0",
		"1", 1,
		"Pieces", "104",
		"Size;8@", "pd1347852966.htm",
		"", 1,
		"Streamer u", "0",
		 0)
	
		Entry[914] = new Element(
		914, "assets/thumb/Charlie Boy yellow thumb.jpg",
		200, 97,
		"CharlieBoyYellowUmp 10", "Charlie Boy Hopper Yellow",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;10@", "pd-67914526.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[915] = new Element(
		915, "assets/thumb/ParanobylKing thumb.jpg",
		200, 120,
		"ParanobylKingUmp 8", "Paranobyl Kingfisher Tan",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "101",
		"Size;8@", "pd-376631199.htm",
		"", 1,
		"DryFliesUm", "0",
		 0)
	
		Entry[916] = new Element(
		916, "assets/thumb/Tung Copper John.JPG",
		98, 59,
		"TungCopperJohnUmp 18", "Tungsten Copper John",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd-755625859.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[917] = new Element(
		917, "assets/thumb/Tung John Red.JPG",
		98, 59,
		"TungCopperJohnRedUmp 18", "Tungsten Copper John Red",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;18@", "pd-1097586087.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[918] = new Element(
		918, "assets/thumb/Tunk Flash Prince.JPG",
		110, 59,
		"TungFlashPrinceUmp 14", "Tungsten Flash Prince",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;14@", "pd1694136821.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[919] = new Element(
		919, "assets/thumb/TungFlash Pheasant.JPG",
		110, 59,
		"TungFlashPheasantUmp 16", "Tungsten Flashback Pheasant Tail",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1795545937.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[920] = new Element(
		920, "assets/thumb/Mighty Mite.JPG",
		101, 66,
		"MightyMiteBaetisUmp 16", "Mighty Mite Baetis Gold Bead",
		"", "",
		"1.85", "0",
		"1", 1,
		"Pieces", "102",
		"Size;16@", "pd1207495277.htm",
		"", 1,
		"NymphUmpq", "0",
		 0)
	
		Entry[921] = new Element(
		921, "assets/thumb/Whit Deer Frog Thumb.jpg",
		200, 122,
		"WDeerFrogUmp 6", "Whitlock&rsquo;s Deerhair Bass Bug Frog",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "100",
		"Size;6@", "pd-1520958647.htm",
		"", 1,
		"Bass Bugs", "0",
		 0)
	
		Entry[922] = new Element(
		922, "assets/thumb/Whit Deer Porkys Pet Thumb.jpg",
		200, 131,
		"WDeerPorkysPetUmp 6", "Whitlock&rsquo;s Deer Hair Bass Bug Porkey&rsquo;s Pet",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "100",
		"Size;6@", "pd-1073497100.htm",
		"", 1,
		"Bass Bugs", "0",
		 0)
	
		Entry[923] = new Element(
		923, "assets/thumb/Whit Canary Thumb.jpg",
		200, 122,
		"WhitDeerCanaryUmp 6", "Whitlock&rsquo;s Deer Hair Bass Bug Canary",
		"", "",
		"3.2", "0",
		"1", 1,
		"Pieces", "100",
		"Size;6@", "pd2092691099.htm",
		"", 1,
		"Bass Bugs", "0",
		 0)
	
		Entry[924] = new Element(
		924, "assets/thumb/Tandem Kennebago Smelt Thumb.jpg",
		200, 118,
		"TandemKennebagoUmp", "Tandem Kennebago Smelt",
		"3 Inches long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "105",
		"", "pd-1421259922.htm",
		"", 1,
		"TandemFlie", "0",
		 0)
	
		Entry[925] = new Element(
		925, "assets/thumb/Tandem Beaded Ghost Thumb.jpg",
		200, 101,
		"TandBeadedGrayGhostU", "Tandem Beaded Gray Ghost",
		"3 Inches Long", "",
		"2.5", "0",
		"1", 1,
		"Pieces", "105",
		"", "pd-693037236.htm",
		"", 1,
		"TandemFlie", "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();
			};
		};