	// 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="81" height="19" 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/B1442.jpg",
		120, 120,
		"B1442", "FRAME TWISTER:CHEVY 1988-1998",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"181.67", "19",
		"1", 1,
		"Pieces", "10",
		"", "pd-31651458.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[1] = new Element(
		1, "assets/thumb/B1443.jpg",
		120, 90,
		"B1443", "FRAME TWISTER:CHEVY S-10",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"181.67", "16",
		"1", 1,
		"Pieces", "10",
		"", "pd1244742620.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[2] = new Element(
		2, "assets/thumb/B1450.jpg",
		120, 90,
		"B1450", "FRAME TWISTER:FORD F-250/F-350",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"181.67", "12",
		"1", 1,
		"Pieces", "10",
		"", "pd-990659222.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[3] = new Element(
		3, "assets/thumb/B1451.jpg",
		120, 90,
		"B1451", "FRAME TWISTER:FORD RANGER",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"213.18", "16",
		"1", 1,
		"Pieces", "10",
		"", "pd1880443304.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[4] = new Element(
		4, "assets/thumb/B1452.jpg",
		120, 90,
		"B1452", "FRAME TWISTER:FORD EXPLORER",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"213.18", "19",
		"1", 1,
		"Pieces", "10",
		"", "pd-149886954.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[5] = new Element(
		5, "assets/thumb/B1453.jpg",
		120, 90,
		"B1453", "FRAME TWISTER:FORD F-150/EXPEDITION",
		"Pickup Frame Horns Pulls Forward, Up, Down, Over and Twist.", "BUSKE",
		"213.18", "13",
		"1", 1,
		"Pieces", "10",
		"", "pd-1016617932.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[6] = new Element(
		6, "assets/thumb/S32955.jpg",
		120, 71,
		"S32955", "BIGEASY GLO/EASY WEDGE/STARTER WEDGE/LOCK KNOB LIFTER KIT",
		"Complete Lockout Tool Kit", "STECK",
		"68.25", "0",
		"1", 1,
		"Pieces", "10",
		"", "pd-1087085796.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[7] = new Element(
		7, "assets/thumb/B1437.jpg",
		120, 90,
		"B1437", "SUPPORT HOOK",
		"ATTACHES TO CORE SUPPORT AND BODY MOUNTS FOR A FAST HOCK-UP ON GMC, CHEVROLET AND FORD PICKUPS", "BUSKE",
		"144.6", "8",
		"1", 1,
		"Pieces", "10",
		"", "pd-241347038.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[8] = new Element(
		8, "assets/thumb/B1395.jpg",
		120, 90,
		"B1395", "DOOR FRAME PULLER",
		"Pulling tonque adjusts to three (3) hole configurations for different pulling angles.", "BUSKE",
		"117.41", "4",
		"1", 1,
		"Pieces", "10",
		"", "pd-734236384.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[9] = new Element(
		9, "assets/thumb/M5616.jpg",
		120, 80,
		"M5616", "DOOR POST PULLER/TWISTER",
		"Designed to put a twist in your pull with its V-shaped gusset. There are three positions from which to pull. For use on bolt-type hinge pillars.", "MO CLAMP",
		"55.91", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd554908750.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[10] = new Element(
		10, "assets/thumb/M5623.jpg",
		120, 80,
		"M5623", "HINGE PLATE",
		"Use in existing holes in frame structures or body panels. Comes with 3/8&quot; Shackle (#5626) for angle pulls.", "MO CLAMP",
		"52.64", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd-510397652.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[11] = new Element(
		11, "assets/thumb/1375-2.JPG",
		150, 200,
		"B1375", "DOOR ALIGNER",
		"Align Front or Rear Doors Up or Down In A Jiffy", "BUSKE",
		"105.05", "4",
		"1", 1,
		"Pieces", "10",
		"", "pd1870216506.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[12] = new Element(
		12, "assets/thumb/B590alt.jpg",
		120, 163,
		"B590", "FRAME WRENCH 45-90, Lenght 18&quot;",
		"FOR straightening flanges on frames and frame horns. The combination of angles of the 590 &amp; 591 wrenches enables you to reach into practically every straightening position.", "BUSKE",
		"92.69", "8",
		"1", 1,
		"Pieces", "10",
		"", "pd1579945464.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[13] = new Element(
		13, "assets/thumb/B591alt.jpg",
		120, 173,
		"B591", "FRAME WRENCH 45-180, Lenght 18&quot;",
		"FOR straightening flanges on frames and frame horns. The combination of angles of the 590 &amp; 591 wrenches enables you to reach into practically every straightening position.", "BUSKE",
		"92.69", "8",
		"1", 1,
		"Pieces", "10",
		"", "pd-1105427226.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[14] = new Element(
		14, "assets/thumb/B515 wheel stand.jpg",
		120, 152,
		"B515", "LONG WHEEL STAND",
		"1 Wheel Stand", "BUSKE",
		"127.29", "22",
		"1", 1,
		"Pieces", "10",
		"", "pd-1220162172.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[15] = new Element(
		15, "assets/thumb/B515P.jpg",
		120, 90,
		"B515P", "LONG WHEEL STAND",
		"Pair of Long Wheel Stands", "BUSKE",
		"253.35", "44",
		"1", 1,
		"Pieces", "10",
		"", "pd-1697317038.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[16] = new Element(
		16, "assets/thumb/B515SP.jpg",
		120, 90,
		"B515SP", "SHORT WHEEL STAND",
		"Pair of Short Wheel Stands", "BUSKE",
		"216.28", "20",
		"1", 1,
		"Pieces", "10",
		"", "pd1084026920.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[17] = new Element(
		17, "assets/thumb/B696.jpg",
		120, 90,
		"B696", "FENDER STRAPS (pair)",
		"", "BUSKE",
		"122.35", "4",
		"1", 1,
		"Pieces", "10",
		"", "pd1084027237.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[18] = new Element(
		18, "assets/thumb/B1385 Iron Hand Tool.jpg",
		120, 208,
		"B1385", "IRON HAND TOOL",
		"", "BUSKE",
		"213.68", "25",
		"1", 1,
		"Pieces", "10",
		"", "pd1693002267.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[19] = new Element(
		19, "assets/thumb/B755.jpg",
		120, 90,
		"B755", "CAR DOLLY",
		"EXTREAME DUTY!!", "BUSKE",
		"259.53", "52",
		"1", 1,
		"Pieces", "10",
		"", "pd-1727387199.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[20] = new Element(
		20, "assets/thumb/B901.jpg",
		120, 90,
		"B901", "7&quot; MULTI-STUD PULLER",
		"", "BUSKE",
		"56.7", "3",
		"1", 1,
		"Pieces", "10",
		"", "pd-688191017.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[21] = new Element(
		21, "assets/thumb/B902.jpg",
		120, 110,
		"B902", "3-1/2 MULTISTUD PULLER",
		"", "BUSKE",
		"41.58", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd1508016093.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[22] = new Element(
		22, "assets/thumb/B900K.jpg",
		120, 90,
		"B900K", "MULTI-STUD PULLER KIT",
		"The new 900K comes with the 901 a 7&quot; long plate with 34 hole placements &amp; the 902 a 3 1/2&quot; long 7/16&quot; Cleivs", "BUSKE",
		"92.69", "4",
		"1", 1,
		"Pieces", "10",
		"", "pd149699923.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[23] = new Element(
		23, "assets/thumb/M0800.jpg",
		120, 80,
		"M0800", "TAC-N-PULL WITH PULL PLATES",
		"For hard-to-hold pulls. Tack weld one of the reusable plates. Attach clamp and pull. Break tack weld with a grinding cut-off whell of cutting torch. Includes two 3&quot; plates, two 1 1/2&quot; plates, and two 1&quot; plates.", "MO CLAMP",
		"100.21", "3",
		"1", 1,
		"Pieces", "10",
		"", "pd-146714695.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[24] = new Element(
		24, "assets/thumb/M0805.jpg",
		120, 90,
		"M0805", "TAC-N-PULL  PULL PLATE KIT",
		"Pull plate kit includes: 10 M0801 1&quot; Pull plates, 5 M0802 1 1/2&quot; Pull plates, 5 M0803 3&quot; Pull plates", "MO CLAMP",
		"57.88", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd-1707638641.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[25] = new Element(
		25, "assets/thumb/B780.jpg",
		120, 90,
		"B780R", "HYRA-PULL W/ 4 TON RAM",
		"Converts standard Push Ram into a standard 4-Ton Pull Ram. As ram pushes out, hooks pull in.", "BUSKE",
		"427.6", "13",
		"1", 1,
		"Pieces", "10",
		"", "pd1238846724.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[26] = new Element(
		26, "assets/thumb/B780 hydra pull 2.jpg",
		120, 62,
		"B780", "HYRA-PULL",
		"Converts standard Push Ram into a standard 4-Ton Pull Ram. As ram pushes out, hooks pull in.", "BUSKE",
		"106.28", "9",
		"1", 1,
		"Pieces", "10",
		"", "pd1263569618.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[27] = new Element(
		27, "assets/thumb/M5910.jpg",
		120, 90,
		"M5910", "SLIDE HAMMER ATTACHMENT",
		"", "MO CLAMP",
		"36.32", "1",
		"1", 1,
		"Pieces", "10",
		"", "pd728046871.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[28] = new Element(
		28, "assets/thumb/M5710.jpg",
		120, 80,
		"M5710", "MO-BLOCK DOLLY FOR FRAME RAIL",
		"", "MO CLAMP",
		"75.73", "6",
		"1", 1,
		"Pieces", "10",
		"", "pd-1233140451.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[29] = new Element(
		29, "assets/thumb/M5711.jpg",
		120, 80,
		"M5711", "MO-WEDGE",
		"High impact polycarbonate plastic. Great fro spreading damaged body panels. Used with Mo-Block Dolly for straightening out the rail pocket.", "MO CLAMP",
		"5.75", "1",
		"1", 1,
		"Pieces", "10",
		"", "pd1084219100.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[30] = new Element(
		30, "assets/thumb/M5810.jpg",
		120, 80,
		"M5810", "DOWN PULL ASSEMBLY",
		"", "MO CLAMP",
		"166.55", "16",
		"1", 1,
		"Pieces", "10",
		"", "pd1594871914.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[31] = new Element(
		31, "assets/thumb/M5811.jpg",
		120, 80,
		"M5811", "BLOCK PULLY ADAPTOR",
		"Double your pulling power. Use this adapter with #5810 Down PUlley Assembly to make a Snap Block Pulley.", "MO CLAMP",
		"54.86", "4",
		"1", 1,
		"Pieces", "10",
		"", "pd880514216.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[32] = new Element(
		32, "assets/thumb/M5815.jpg",
		120, 80,
		"M5815", "DOWN PULLEY/SNAP BLOCK ASSEMBLY",
		"The Down Pulley Assembly #5810 is combined with the Block Pulley Adapter #5811. Perfect for horizontal pulls.", "MO CLAMP",
		"221.41", "19",
		"1", 1,
		"Pieces", "10",
		"", "pd1756113686.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[33] = new Element(
		33, "assets/thumb/M5820.jpg",
		120, 80,
		"M5820", "PINCH WELD BRACKETS (SET OF 4)",
		"", "MO CLAMP",
		"81.85", "3",
		"1", 1,
		"Pieces", "10",
		"", "pd840998708.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[34] = new Element(
		34, "assets/thumb/M5830.jpg",
		120, 80,
		"M5830", "SADDLE MATE",
		"For use with your Selson Air Jack. Unique formed shape gives the SaddleMate superior strength. Custom die form to fit 99% of all automobiles.", "MO CLAMP",
		"44.33", "3",
		"1", 1,
		"Pieces", "10",
		"", "pd-2018711422.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[35] = new Element(
		35, "assets/thumb/M6355.jpg",
		120, 80,
		"M6355", "MULTI-PAD METAL",
		"", "MO CLAMP",
		"108.19", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd-1431057792.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[36] = new Element(
		36, "assets/thumb/M6356.jpg",
		120, 80,
		"M6356", "POWER PRESS PLATE",
		"", "MO CLAMP",
		"91.91", "3",
		"1", 1,
		"Pieces", "10",
		"", "pd-948718418.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[37] = new Element(
		37, "assets/thumb/M6357.jpg",
		120, 80,
		"M6357", "MULTI-PAD METAL W/ POWER PRESS PLATE KIT",
		"Kit includes both #6355, Multi-Pad and #6356, Power Press Plate.", "MO CLAMP",
		"181.98", "5",
		"1", 1,
		"Pieces", "10",
		"", "pd-2053201268.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[38] = new Element(
		38, "assets/thumb/M5010.jpg",
		120, 90,
		"M5010", "No. 1 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"807.98", "50",
		"1", 1,
		"Pieces", "10",
		"", "pd-293946958.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[39] = new Element(
		39, "assets/thumb/M5078.jpg",
		120, 90,
		"M5078", "No. 10 TOOL BOARD W/TOOLS",
		"", "MO CLAMP",
		"2466.42", "157",
		"1", 1,
		"Pieces", "10",
		"", "pd373604144.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[40] = new Element(
		40, "assets/thumb/M5013.jpg",
		120, 120,
		"M5013", "Deluxe No. 1 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"2833.12", "190",
		"1", 1,
		"Pieces", "10",
		"", "pd1084640124.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[41] = new Element(
		41, "assets/thumb/M5090.jpg",
		120, 90,
		"M5090", "No. 9 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"903.18", "40",
		"1", 1,
		"Pieces", "10",
		"", "pd800755210.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[42] = new Element(
		42, "assets/thumb/M5616.jpg",
		120, 80,
		"M5616-1", "DOOR POST PULLER/TWISTER",
		"Designed to put a twist in your pull with its V-shaped gusset. There are three positions from which to pull. For use on bolt-type hinge pillars.", "MO CLAMP",
		"55.91", "3",
		"1", 1,
		"Pieces", "2",
		"", "pd1384581960.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[43] = new Element(
		43, "assets/thumb/M5623.jpg",
		120, 80,
		"M5623-1", "HINGE PLATE",
		"Use in existing holes in frame structures or body panels. Comes with 3/8&quot; Shackle (#5626) for angle pulls.", "MO CLAMP",
		"52.64", "3",
		"1", 1,
		"Pieces", "2",
		"", "pd-1949629770.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[44] = new Element(
		44, "assets/thumb/B810B.jpg",
		120, 90,
		"B810B", "STRUT-O-PLATE",
		"Designed for foreign and domestic vehicles. Many Strut Tower measurements can be checked while the pull is being made.", "BUSKE",
		"216.28", "9",
		"1", 1,
		"Pieces", "2",
		"", "pd384155604.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[45] = new Element(
		45, "assets/thumb/B810B.jpg",
		120, 90,
		"B810C", "STRUT-O-PLATE WITH SUPER CLAW",
		"Designed for foreign and domestic vehicles. Many Strut Tower measurements can be checked while the pull is being made.", "BUSKE",
		"265.71", "11",
		"1", 1,
		"Pieces", "2",
		"", "pd864385570.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[46] = new Element(
		46, "assets/thumb/B1395.jpg",
		120, 90,
		"B1395-1", "DOOR FRAME PULLER",
		"Pulling tonque adjusts to three (3) hole configurations for different pulling angles.", "BUSKE",
		"117.41", "4",
		"1", 1,
		"Pieces", "2",
		"", "pd1084641964.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[47] = new Element(
		47, "assets/thumb/B555.jpg",
		120, 118,
		"B555", "HINGE PLATE",
		"Hinge plate bolts to the hinge mounting pad. For making fast pulls on door pillars and cowls. Can also be used in many other places as a pull plate.", "BUSKE",
		"51.91", "2",
		"1", 1,
		"Pieces", "2",
		"", "pd132163770.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[48] = new Element(
		48, "assets/thumb/B431.jpg",
		120, 90,
		"B431", "PULL PLATE",
		"A handy pull plate for most conventional frames. Align and hole on either side and use the center slot as the second hole.", "BUSKE",
		"70.76", "8",
		"1", 1,
		"Pieces", "2",
		"", "pd-23108232.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[49] = new Element(
		49, "assets/thumb/B540.jpg",
		120, 90,
		"B540", "PULL PLATE",
		"The #540 pull plate is designed to be used on vehicles having a frame horn with a flat front surface. Can also be used to pull a convetional frame over, such as to correct sway.", "BUSKE",
		"98.87", "6",
		"1", 1,
		"Pieces", "2",
		"", "pd867018854.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[50] = new Element(
		50, "assets/thumb/B541.jpg",
		120, 90,
		"B541", "PULL PLATE",
		"A smaller version of the #431 pull plate. To be used on compact cars or wherever a narrow frame horn is encountered.", "BUSKE",
		"65.5", "5",
		"1", 1,
		"Pieces", "2",
		"", "pd14261508.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[51] = new Element(
		51, "assets/thumb/M2100.jpg",
		120, 80,
		"M2100", "2MA MULTI-ADAPTOR PLATE",
		"", "MO CLAMP",
		"253.46", "10",
		"1", 1,
		"Pieces", "2",
		"", "pd1084721735.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[52] = new Element(
		52, "assets/thumb/M2400.jpg",
		120, 80,
		"M2400", "3MA MULTI-ADAPTOR PLATE",
		"", "MO CLAMP",
		"253.46", "11",
		"1", 1,
		"Pieces", "2",
		"", "pd8828365.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[53] = new Element(
		53, "assets/thumb/M1450.jpg",
		120, 80,
		"M1450", "NUMEROUS ANGLE PULLER",
		"", "MO CLAMP",
		"49.47", "2",
		"1", 1,
		"Pieces", "2",
		"", "pd-1862982461.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[54] = new Element(
		54, "assets/thumb/M1500.jpg",
		120, 80,
		"M1500", "PULL RING",
		"", "MO CLAMP",
		"46.81", "2",
		"1", 1,
		"Pieces", "2",
		"", "pd1084722338.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[55] = new Element(
		55, "assets/thumb/M2450.jpg",
		120, 80,
		"M2450", "BOLTLESS STRUT TOWER PULLER",
		"", "MO CLAMP",
		"207.11", "8",
		"1", 1,
		"Pieces", "2",
		"", "pd1084722498.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[56] = new Element(
		56, "assets/thumb/M4035.jpg",
		120, 80,
		"M4035", "ANGLE BRACKET",
		"", "MO CLAMP",
		"62.58", "4",
		"1", 1,
		"Pieces", "2",
		"", "pd770309440.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[57] = new Element(
		57, "assets/thumb/M4047.jpg",
		120, 80,
		"M4047", "FRAME RACK DRAW BAR W/SHACKLE &amp; OVAL LOOP",
		"", "MO CLAMP",
		"67.9", "5",
		"1", 1,
		"Pieces", "2",
		"", "pd-2117589650.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[58] = new Element(
		58, "assets/thumb/M4048.jpg",
		120, 80,
		"M4048", "MANY HOLE WIDE DRAW BAR",
		"", "MO CLAMP",
		"76.22", "7",
		"1", 1,
		"Pieces", "2",
		"", "pd1400078668.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[59] = new Element(
		59, "assets/thumb/M4056.jpg",
		120, 80,
		"M4056", "NARROW DRAW BAR W/ SINGLE CLAW",
		"", "MO CLAMP",
		"75.59", "4",
		"1", 1,
		"Pieces", "2",
		"", "pd360183898.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[60] = new Element(
		60, "assets/thumb/M5622.jpg",
		120, 80,
		"M5622", "TOWER CHAIN",
		"Many different shop uses. Use in correction of strut towers for attachment to existing bolt holes. Designed for use with 1/4&quot; chain.", "MO CLAMP",
		"42.72", "2",
		"1", 1,
		"Pieces", "2",
		"", "pd1773034328.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[61] = new Element(
		61, "assets/thumb/B1050S.jpg",
		120, 90,
		"B1050S", "SMALL HOOK",
		"", "BUSKE",
		"117.41", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd-237956794.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[62] = new Element(
		62, "assets/thumb/B1050M.jpg",
		120, 90,
		"B1050M", "MEDIUM HOOK",
		"", "BUSKE",
		"142.13", "6",
		"1", 1,
		"Pieces", "3",
		"", "pd-1701662492.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[63] = new Element(
		63, "assets/thumb/B1050L.jpg",
		120, 90,
		"B1050L", "LARGE HOOK",
		"", "BUSKE",
		"241", "10",
		"1", 1,
		"Pieces", "3",
		"", "pd-789704270.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[64] = new Element(
		64, "assets/thumb/B1050J.jpg",
		120, 90,
		"B1050J", "JUMBO HOOK",
		"", "BUSKE",
		"302.79", "15",
		"1", 1,
		"Pieces", "3",
		"", "pd1481103152.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[65] = new Element(
		65, "assets/thumb/B440.jpg",
		120, 90,
		"B440", "PULL HOOK",
		"Tube size 1 1/2&quot; x 2 1/2&quot;", "BUSKE",
		"184.2", "17",
		"1", 1,
		"Pieces", "3",
		"", "pd-634171170.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[66] = new Element(
		66, "assets/thumb/B440.jpg",
		120, 90,
		"B440L", "PULL HOOK",
		"Tube size 2&quot; x 3&quot;", "BUSKE",
		"265.71", "28",
		"1", 1,
		"Pieces", "3",
		"", "pd1084729714.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[67] = new Element(
		67, "assets/thumb/B1437.jpg",
		120, 90,
		"B1437-1", "SUPPORT HOOK",
		"ATTACHES TO CORE SUPPORT AND BODY MOUNTS FOR A FAST HOCK-UP ON GMC, CHEVROLET AND FORD PICKUPS", "BUSKE",
		"144.6", "8",
		"1", 1,
		"Pieces", "3",
		"", "pd-1664994064.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[68] = new Element(
		68, "assets/thumb/B1385 Iron Hand Tool.jpg",
		120, 208,
		"B1385-1", "IRON HAND TOOL",
		"", "BUSKE",
		"213.68", "25",
		"1", 1,
		"Pieces", "3",
		"", "pd1773397150.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[69] = new Element(
		69, "assets/thumb/B943.jpg",
		120, 90,
		"B943", "FLANGE HOOK",
		"Quickly hooks over the wheel opening flange, the core support, inner fender, etc. for fast pull iwth no bolts to tighten. Ideal for use with a slide hammer. With the low cost of the flange hook, it will pay for itself many times over.", "BUSKE",
		"48.81", "2",
		"1", 1,
		"Pieces", "3",
		"", "pd-1521740804.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[70] = new Element(
		70, "assets/thumb/B944.gif",
		120, 111,
		"B944", "STRIKER PIN HOOK",
		"Fast hook-up for pulling on the striker pin on the door post. Simply loosen the latch pin, slip on the hook and re-tighten the pin. A fast non-slip hook-up in the right place. Can pay for itself the first time it is used.", "BUSKE",
		"50.05", "1",
		"1", 1,
		"Pieces", "3",
		"", "pd627542666.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[71] = new Element(
		71, "assets/thumb/B1092.gif",
		120, 80,
		"B1092", "PULL KIT PACKAGE",
		"Includes one each: #943, #944, #977", "BUSKE",
		"166.85", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd987651016.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[72] = new Element(
		72, "assets/thumb/M6400.jpg",
		120, 80,
		"M6400", "REGULAR DEEP HOOK SET",
		"", "MO CLAMP",
		"266.07", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1084745226.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[73] = new Element(
		73, "assets/thumb/M6410.jpg",
		120, 80,
		"M6410", "JUMBO DEEP HOOK SET",
		"10&quot; (254mm) throat depth; 15&quot; (381mm) throat opening.", "MO CLAMP",
		"384.7", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd261366600.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[74] = new Element(
		74, "assets/thumb/M6420.jpg",
		120, 80,
		"M6420", "MINI DEEP HOOK SET",
		"6&quot; (152mm) throat depth; 9&quot; (229mm) throat opening. Brackets are interchangeable with #6400 and #6410.", "MO CLAMP",
		"156.15", "16",
		"1", 1,
		"Pieces", "3",
		"", "pd419289782.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[75] = new Element(
		75, "assets/thumb/M3110.jpg",
		120, 90,
		"M3110", "SMALL FLAT NOSE ",
		"Alloy heat-treated hooks increase pulling options. May be used wtih Hole Pull Plates (#0810 &amp; #0820) to pull, or use in combination with clamps.", "MO CLAMP",
		"60.66", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd-1884006444.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[76] = new Element(
		76, "assets/thumb/M3120.jpg",
		120, 90,
		"M3120", "SMALL ROUND NOSE",
		"Alloy heat-treated hooks increase pulling options. May be used with Hole Pull Plates (#0810 &amp; #0820) to pull, or use in combination with clamps.", "MO CLAMP",
		"56.7", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1084746367.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[77] = new Element(
		77, "assets/thumb/M3130.jpg",
		120, 90,
		"M3130", "LARGE FLAT NOSE",
		"Alloy heat-treated hooks increase pulling options. May be used with Hole Pull Plates (#0810 &amp; #0820) to pull, or use in combination with clamps.", "MO CLAMP",
		"64.62", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd-1752174395.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[78] = new Element(
		78, "assets/thumb/M3140.jpg",
		120, 90,
		"M3140", "LARGE ROUND NOSE",
		"Alloy heat-treated hooks increase pulling options. May be used with Hole Pull Plates (#0810 &amp; #0820) to pull, or use in combination with clamps.", "MO CLAMP",
		"62.63", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd-670713733.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[79] = new Element(
		79, "assets/thumb/M3100.jpg",
		120, 90,
		"M3100", "SWIVEL HEAD SHEET METAL HOOKS (SET OF 4)",
		"Alloy heat-treated hooks increase pulling options. May be used with Hole Pull Plates (#0810 &amp; #0820) to pull, or use in combination with clamps. Includes one each: #3110, #3120, #3130, #3140.", "MO CLAMP",
		"225.03", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1405542177.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[80] = new Element(
		80, "assets/thumb/M3210.jpg",
		120, 90,
		"M3210", "SMALL FLAT NOSE ",
		"", "MO CLAMP",
		"44.51", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1896889911.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[81] = new Element(
		81, "assets/thumb/M3220.jpg",
		120, 90,
		"M3220", "SMALL ROUND NOSE",
		"", "MO CLAMP",
		"44.12", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1084747618.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[82] = new Element(
		82, "assets/thumb/M3230.jpg",
		120, 90,
		"M3230", "LARGE FLAT NOSE",
		"", "MO CLAMP",
		"49.71", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1539681376.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[83] = new Element(
		83, "assets/thumb/M3240.jpg",
		120, 90,
		"M3240", "LARGE ROUND NOSE",
		"", "MO CLAMP",
		"48.28", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd-981210738.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[84] = new Element(
		84, "assets/thumb/M3200.jpg",
		120, 90,
		"M3200", "FIXED HEAD SHEET METAL HOOKS (SET OF 4)",
		"", "MO CLAMP",
		"161.92", "8",
		"1", 1,
		"Pieces", "3",
		"", "pd-1228840340.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[85] = new Element(
		85, "assets/thumb/M1320.jpg",
		120, 90,
		"M1320", "SLIM LINE SILL HOOK",
		"", "MO CLAMP",
		"173.65", "10",
		"1", 1,
		"Pieces", "3",
		"", "pd-394707334.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[86] = new Element(
		86, "assets/thumb/M1250.jpg",
		120, 80,
		"M1250", "PANEL PULLER",
		"The Panel Puller is light and easy to use with slide hammer or pulling post. Use the Panel Puller on fender openings, deck lids, door posts and other openings. Heat-treated alloy steel.", "MO CLAMP",
		"58.16", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd-783748808.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[87] = new Element(
		87, "assets/thumb/M1300.jpg",
		120, 79,
		"M1300", "SILL HOOK",
		"", "MO CLAMP",
		"90.95", "6",
		"1", 1,
		"Pieces", "3",
		"", "pd-639034842.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[88] = new Element(
		88, "assets/thumb/M1350.jpg",
		120, 80,
		"M1350", "VERSA HOOK",
		"", "MO CLAMP",
		"162.84", "7",
		"1", 1,
		"Pieces", "3",
		"", "pd-841915196.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[89] = new Element(
		89, "assets/thumb/M1360.jpg",
		120, 80,
		"M1360", "JUNIOR VERSA HOOK",
		"", "MO CLAMP",
		"131.22", "6",
		"1", 1,
		"Pieces", "3",
		"", "pd805267602.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[90] = new Element(
		90, "assets/thumb/M1600.jpg",
		120, 80,
		"M1600", "MULTI-PURPOSE ANCHOR HOOK",
		"", "MO CLAMP",
		"75.73", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1016629520.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[91] = new Element(
		91, "assets/thumb/M1800.jpg",
		120, 80,
		"M1800", "TRACK HOOK",
		"", "MO CLAMP",
		"45.23", "3",
		"1", 1,
		"Pieces", "3",
		"", "pd1860097470.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[92] = new Element(
		92, "assets/thumb/M1900.jpg",
		120, 80,
		"M1900", "QUICK HOOK",
		"Four hole-size selections for quick hook-ups in existing frame holes for pulling of damaged frames. Uses Mo-Clamp&rsquo;s easy chain hook-up system.", "MO CLAMP",
		"69.96", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd263252508.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[93] = new Element(
		93, "assets/thumb/S20022.jpg",
		120, 90,
		"S20022", "QUARTER PULLER",
		"Pulls Rear Quarter and Wheel Well, 12&quot; Bars", "STECK",
		"50.87", "5",
		"1", 1,
		"Pieces", "3",
		"", "pd2145987072.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[94] = new Element(
		94, "assets/thumb/S20022.jpg",
		120, 90,
		"S20033", "QUARTER PULLER II",
		"Pulls Rear Quarter and Wheel Wells, 6&quot; Bars", "STECK",
		"47.69", "4",
		"1", 1,
		"Pieces", "3",
		"", "pd-290054098.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[95] = new Element(
		95, "assets/thumb/M0045.jpg",
		120, 80,
		"M0045", "ANGLE BITE CLAMP",
		"", "MO CLAMP",
		"106.23", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd1550121484.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[96] = new Element(
		96, "assets/thumb/M0050.jpg",
		120, 80,
		"M0050", "A CLAMP",
		"", "MO CLAMP",
		"63.33", "3",
		"1", 1,
		"Pieces", "1",
		"", "pd1313939226.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[97] = new Element(
		97, "assets/thumb/M0053.jpg",
		120, 80,
		"M0053", "A CLAMP WITH PULL RING",
		"", "MO CLAMP",
		"83.74", "3",
		"1", 1,
		"Pieces", "1",
		"", "pd-1754119464.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[98] = new Element(
		98, "assets/thumb/M0054.jpg",
		120, 80,
		"M0054", "MINI SPRING CLAMP",
		"", "MO CLAMP",
		"90.47", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd-1251654458.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[99] = new Element(
		99, "assets/thumb/M0100.jpg",
		120, 80,
		"M0100", "B CLAMP",
		"", "MO CLAMP",
		"117.46", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd-601878428.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[100] = new Element(
		100, "assets/thumb/M0200.jpg",
		120, 80,
		"M0200", "C CLAMP",
		"", "MO CLAMP",
		"117.46", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd-1672970958.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[101] = new Element(
		101, "assets/thumb/M0205.jpg",
		120, 80,
		"M0205", "DYNA-MO CLAMP",
		"", "MO CLAMP",
		"92.13", "3",
		"1", 1,
		"Pieces", "1",
		"", "pd-790221136.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[102] = new Element(
		102, "assets/thumb/M0250.jpg",
		120, 80,
		"M0250", "MINI-C CLAMP",
		"", "MO CLAMP",
		"106.23", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd803697758.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[103] = new Element(
		103, "assets/thumb/M0300.jpg",
		120, 80,
		"M0300", "JR CLAMP",
		"", "MO CLAMP",
		"101.85", "6",
		"1", 1,
		"Pieces", "1",
		"", "pd632367548.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[104] = new Element(
		104, "assets/thumb/M0305.jpg",
		120, 80,
		"M0305", "DYNA-MO JR CLAMP",
		"", "MO CLAMP",
		"92.13", "3",
		"1", 1,
		"Pieces", "1",
		"", "pd-1095657910.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[105] = new Element(
		105, "assets/thumb/M0307.jpg",
		120, 90,
		"M0307", "DYNA-MO CORNER CLAMP",
		"", "MO CLAMP",
		"125.78", "3",
		"1", 1,
		"Pieces", "1",
		"", "pd-89240184.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[106] = new Element(
		106, "assets/thumb/M0400.jpg",
		120, 80,
		"M0400", "W CLAMP",
		"", "MO CLAMP",
		"161.08", "12",
		"1", 1,
		"Pieces", "1",
		"", "pd-1411930604.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[107] = new Element(
		107, "assets/thumb/M0405.jpg",
		120, 80,
		"M0405", "DYNA-MO W CLAMP",
		"", "MO CLAMP",
		"92.13", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd1473956450.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[108] = new Element(
		108, "assets/thumb/M0440.jpg",
		120, 80,
		"M0440", "TWIN CLAW CLAMP",
		"", "MO CLAMP",
		"124.2", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd-851443872.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[109] = new Element(
		109, "assets/thumb/M0450.jpg",
		120, 90,
		"M0450", "FLASH CLAMP",
		"", "MO CLAMP",
		"224.22", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd561149070.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[110] = new Element(
		110, "assets/thumb/M0480.jpg",
		120, 80,
		"M0480", "135 DEGREE SWIVEL CLAMP",
		"", "MO CLAMP",
		"135.07", "6",
		"1", 1,
		"Pieces", "1",
		"", "pd-467737236.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[111] = new Element(
		111, "assets/thumb/M0550.jpg",
		120, 90,
		"M0550", "T.O. (TIGHT OPENING) CLAMP",
		"", "MO CLAMP",
		"147.73", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd2042526074.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[112] = new Element(
		112, "assets/thumb/M0650.jpg",
		120, 80,
		"M0650", "BOX CLAMP",
		"", "MO CLAMP",
		"146.89", "11",
		"1", 1,
		"Pieces", "1",
		"", "pd681354296.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[113] = new Element(
		113, "assets/thumb/M0655.jpg",
		120, 80,
		"M0655", "DYNA-MO BOX CLAMP",
		"", "MO CLAMP",
		"110.64", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd-1462762202.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[114] = new Element(
		114, "assets/thumb/M0660.jpg",
		120, 80,
		"M0660", "LONG NOSE CLAMP",
		"", "MO CLAMP",
		"105.07", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd1549682628.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[115] = new Element(
		115, "assets/thumb/M0670.jpg",
		120, 80,
		"M0670", "BABY BOX CLAMP",
		"", "MO CLAMP",
		"110.92", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd-1216150638.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[116] = new Element(
		116, "assets/thumb/M0680.jpg",
		120, 80,
		"M0680", "BIG MOUTH CLAMP",
		"", "MO CLAMP",
		"124.91", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd-2116969456.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[117] = new Element(
		117, "assets/thumb/M5900.jpg",
		120, 80,
		"M5900", "MINI-BITE W/ PULL RING",
		"", "MO CLAMP",
		"92.41", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd-1482022722.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[118] = new Element(
		118, "assets/thumb/M4060.jpg",
		120, 80,
		"M4060", "MITY-BITE CLAMP",
		"", "MO CLAMP",
		"77.89", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd3747100.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[119] = new Element(
		119, "assets/thumb/M4010.jpg",
		120, 80,
		"M4010", "FRAME RACK UNIBODY CLAMP",
		"", "MO CLAMP",
		"232.61", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1084879852.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[120] = new Element(
		120, "assets/thumb/M4015.jpg",
		120, 90,
		"M4015", "FRAME RACK CLAMPS WITH ANGLE BRACKETS (SET OF 4)",
		"", "MO CLAMP",
		"773.91", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd338308090.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[121] = new Element(
		121, "assets/thumb/M4018.jpg",
		120, 80,
		"M4018", "MERCEDES ANCHORING ADAPTORS (SET OF 4)",
		"For holding vehicles with Mercedes-type jack tube holes. Jack pin adapters provided for early and late models (two different sizes).", "MO CLAMP",
		"936.36", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1779852616.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[122] = new Element(
		122, "assets/thumb/M4020.jpg",
		120, 80,
		"M4020", "FOUR-WAY PULL CLAMP",
		"Includes Shackle (#4044) and Oval Loop (#4043). Clamp has recessed pockets to hold bolts stationary for easy tightening.", "MO CLAMP",
		"166.84", "13",
		"1", 1,
		"Pieces", "1",
		"", "pd-1804607578.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[123] = new Element(
		123, "assets/thumb/M4021.jpg",
		120, 80,
		"M4021", "FRAME RACK DYNA-MO #1",
		"One pair Frame Rack Dyna-Mo jaws with 7&quot; draw bar, one side pull bracket, shackle and oval loop. Raised &quot;ears&quot; to hold bolt in place while tightening.", "MO CLAMP",
		"159.34", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd295413316.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[124] = new Element(
		124, "assets/thumb/M4022.jpg",
		120, 80,
		"M4022", "FRAME RACK DYNA-MO #2",
		"Two pair Frame Rack Dyna-Mo jaws with 12&quot; draw bar, one side pull bracket, shackle and oval loop. Raised &quot;ears&quot; to hold bolt in place while tightening.", "MO CLAMP",
		"234.3", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1764328978.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[125] = new Element(
		125, "assets/thumb/M4024.jpg",
		120, 80,
		"M4024", "FRAME RACK DYNA-MO CLAMP",
		"Make your own tool with this severe duty tooth designed clamp. Add side pull bracket when needed.", "MO CLAMP",
		"71.05", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd2048254608.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[126] = new Element(
		126, "assets/thumb/M4025.jpg",
		120, 80,
		"M4025", "FRAME RACK JAWS",
		"Clamp has recessed pockets to hold bolts stationary for easy tightening.", "MO CLAMP",
		"115.29", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd-1705915586.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[127] = new Element(
		127, "assets/thumb/M4030.jpg",
		120, 80,
		"M4030", "THREE WAY PULL CLAMP",
		"Includes Oval Loop (#4043). Clamp has recessed pockets to hold bolts stationary for easy tightening.", "MO CLAMP",
		"120.89", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd1224924060.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[128] = new Element(
		128, "assets/thumb/M4035.jpg",
		120, 80,
		"M4035-1", "ANGLE BRACKET",
		"", "MO CLAMP",
		"62.58", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd-1908008150.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[129] = new Element(
		129, "assets/thumb/M5850.jpg",
		120, 90,
		"M5850", "SMALL JAW TONG CLAMP",
		"", "MO CLAMP",
		"288.58", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1882053992.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[130] = new Element(
		130, "assets/thumb/M5851.jpg",
		120, 90,
		"M5851", "HYBRID TONG CLAMP",
		"", "MO CLAMP",
		"318.42", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd192061910.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[131] = new Element(
		131, "assets/thumb/M5852.jpg",
		120, 90,
		"M5852", "LARGE TONG TYPE CLAMP",
		"", "MO CLAMP",
		"354.36", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1661924340.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[132] = new Element(
		132, "assets/thumb/M5802.jpg",
		120, 80,
		"M5802", "JUMBO G CLAMP",
		"", "MO CLAMP",
		"375.62", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd213797698.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[133] = new Element(
		133, "assets/thumb/M5800.jpg",
		120, 80,
		"M5800", "G CLAMP",
		"", "MO CLAMP",
		"154.39", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd823585600.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[134] = new Element(
		134, "assets/thumb/M4050.jpg",
		120, 80,
		"M4050", "MULTI-ANGLE CLAMP",
		"", "MO CLAMP",
		"162.8", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd347521902.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[135] = new Element(
		135, "assets/thumb/M4058.jpg",
		120, 80,
		"M4058", "MAC II MULTI-ANGLE CLAMP",
		"", "MO CLAMP",
		"173.3", "9",
		"1", 1,
		"Pieces", "1",
		"", "pd1018908492.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[136] = new Element(
		136, "assets/thumb/M0600.jpg",
		120, 80,
		"M0600", "UNIBODY CLAMP",
		"", "MO CLAMP",
		"198.09", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1803318874.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[137] = new Element(
		137, "assets/thumb/M0750.jpg",
		120, 80,
		"M0750", "LIP GRIP WITH SIDE PULL BRACKET",
		"", "MO CLAMP",
		"141.67", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd-616403944.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[138] = new Element(
		138, "assets/thumb/M0700.jpg",
		120, 80,
		"M0700", "SANDWICH CLAMP",
		"", "MO CLAMP",
		"176.38", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd1936625670.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[139] = new Element(
		139, "assets/thumb/M4070.jpg",
		120, 90,
		"M4070", "FULL FRAME HOLDING SYSTEM",
		"", "MO CLAMP",
		"2828.38", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-380678748.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[140] = new Element(
		140, "assets/thumb/B690.jpg",
		120, 90,
		"B690", "WEDGE TIGHT ",
		"2 1/2&quot; wide jaws", "BUSKE",
		"123.59", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd9895026.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[141] = new Element(
		141, "assets/thumb/B690A.jpg",
		120, 90,
		"B690A", "WEDGE TIGHT ",
		"2 1/2&quot; wide jaws", "BUSKE",
		"123.59", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd539869168.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[142] = new Element(
		142, "assets/thumb/B690C.jpg",
		120, 90,
		"B690C", "WEDGE TIGHT ",
		"4-1/4&quot; wide jaws", "BUSKE",
		"173.02", "13",
		"1", 1,
		"Pieces", "1",
		"", "pd-1210167556.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[143] = new Element(
		143, "assets/thumb/B690S.jpg",
		120, 90,
		"B690S", "WEDGE TIGHT SIDE PULL ",
		"Converts the wedge tight clamp into a side pull clamp for pinch weld and flange pulls. One size fits all the above clamps.", "BUSKE",
		"49.43", "2",
		"1", 1,
		"Pieces", "1",
		"", "pd1926249866.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[144] = new Element(
		144, "assets/thumb/B868.jpg",
		120, 90,
		"B868", "MINI TONG",
		"A small tong clamp to get into cramped areas.", "BUSKE",
		"121.12", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd-1934578303.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[145] = new Element(
		145, "assets/thumb/B860.jpg",
		120, 90,
		"B860", "SURE GRIP TONG CLAMP",
		"The Buske 860 tong clamp has two curved jaws with 5 3/4&quot; reach to get around or over obstacles and flanges.", "BUSKE",
		"234.81", "11",
		"1", 1,
		"Pieces", "1",
		"", "pd1085486131.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[146] = new Element(
		146, "assets/thumb/B890.jpg",
		120, 90,
		"B890", "KING TONG CLAMP",
		"890 has two large curved Jaws to reach around, over and through.", "BUSKE",
		"426.37", "35",
		"1", 1,
		"Pieces", "1",
		"", "pd-1514102375.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[147] = new Element(
		147, "assets/thumb/B890A.jpg",
		120, 90,
		"B890A", "KING TONG CLAMP",
		"890A has one large curved Jaw &amp; one large straight Jaw to fit under the vehicle for floor pulls and to reach into tight areas.", "BUSKE",
		"426.37", "35",
		"1", 1,
		"Pieces", "1",
		"", "pd187868527.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[148] = new Element(
		148, "assets/thumb/B1390S.jpg",
		120, 90,
		"B1390S", "ADJUSTABLE FRAME PULLING CLAMP",
		"For unibody and conventional automobiles", "BUSKE",
		"108.92", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd2018960693.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[149] = new Element(
		149, "assets/thumb/B1092.gif",
		120, 80,
		"B1092-1", "PULL KIT PACKAGE",
		"Includes one each: #943, #944, #977", "BUSKE",
		"166.85", "4",
		"1", 1,
		"Pieces", "1",
		"", "pd563522102.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[150] = new Element(
		150, "assets/thumb/B1325F.jpg",
		120, 90,
		"B1325F", "POSI-LOCK/UNI-CLAMP",
		"Includes (4) assemblies below, (8) 1341 E-Z Anchor and (2) 1340.", "BUSKE",
		"4319.3", "564",
		"1", 1,
		"Pieces", "1",
		"", "pd1085431403.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[151] = new Element(
		151, "assets/thumb/B509M 2P Mercedes BMW Clamp.jpg",
		120, 182,
		"B509M", "MERCEDEES/BMW CLAMP (set of 4)",
		"Pins insert into the jacking holes on Mercedes for fast anchoring on the UniRack or Posi-Lock.", "BUSKE",
		"606.31", "24",
		"1", 1,
		"Pieces", "1",
		"", "pd1235715721.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[152] = new Element(
		152, "assets/thumb/B509K.jpg",
		120, 90,
		"B509K", "HONDA CONVERSION KIT",
		"Includes 4 each 509HP and 509HC. Simplifies anchoring the Honda with horizontal pinch welds.", "BUSKE",
		"531.42", "36",
		"1", 1,
		"Pieces", "1",
		"", "pd162363685.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[153] = new Element(
		153, "assets/thumb/B977.jpg",
		120, 90,
		"B977", "MINI BITE CLAMP",
		"", "BUSKE",
		"78.78", "2",
		"1", 1,
		"Pieces", "1",
		"", "pd-799803429.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[154] = new Element(
		154, "assets/thumb/B750-1.jpg",
		120, 75,
		"B750", "COMBO CLAMP",
		"Total length 11 1/2&quot;, Holding length 8 3/4&quot;, Width 2&quot;", "BUSKE",
		"173.02", "7",
		"1", 1,
		"Pieces", "1",
		"", "pd-359038357.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[155] = new Element(
		155, "assets/thumb/B750SP-1.jpg",
		120, 116,
		"B750SP", "SIDE PULL FOR 750",
		"", "BUSKE",
		"66.53", "1",
		"1", 1,
		"Pieces", "1",
		"", "pd-1726383471.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[156] = new Element(
		156, "assets/thumb/B750C-1.jpg",
		120, 49,
		"B750C", "COMBO CLAMP WITH SIDE PULL",
		"", "BUSKE",
		"212.56", "13",
		"1", 1,
		"Pieces", "1",
		"", "pd-2016147673.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[157] = new Element(
		157, "assets/thumb/B680.jpg",
		120, 90,
		"B680", "SPURTOOTH CLAMP",
		"", "BUSKE",
		"135.94", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd1883176365.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[158] = new Element(
		158, "assets/thumb/B1385 Iron Hand Tool.jpg",
		120, 208,
		"B1385-2", "IRON HAND TOOL",
		"", "BUSKE",
		"213.68", "25",
		"1", 1,
		"Pieces", "1",
		"", "pd-655741021.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[159] = new Element(
		159, "assets/thumb/B914.jpg",
		120, 90,
		"B914", "SECTIONING CLAMP",
		"Ideal for holding and positioning rocker panels, windshield post, etc.", "BUSKE",
		"142.13", "8",
		"1", 1,
		"Pieces", "1",
		"", "pd796904073.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[160] = new Element(
		160, "assets/thumb/B905.jpg",
		120, 90,
		"B905", "FLEX ARM",
		"Contracted: 36&quot;, Extended: 65&quot;", "BUSKE",
		"247.17", "16",
		"1", 1,
		"Pieces", "1",
		"", "pd1211873247.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[161] = new Element(
		161, "assets/thumb/B905S.jpg",
		120, 90,
		"B905S", "FLEX ARM (SHORT)",
		"Contracted: 27&quot;, Extended: 38 1/2&quot;", "BUSKE",
		"247.17", "15",
		"1", 1,
		"Pieces", "1",
		"", "pd-1145963227.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[162] = new Element(
		162, "assets/thumb/B905P.jpg",
		120, 90,
		"B905P", "FLEX ARM SET (INCL. 2-905&rsquo;s)",
		"", "BUSKE",
		"494.34", "35",
		"1", 1,
		"Pieces", "1",
		"", "pd-1485038629.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[163] = new Element(
		163, "assets/thumb/B905PS.jpg",
		120, 90,
		"B905PS", "FLEX ARM SET (INCL. 2-905&rsquo;s &amp; 1-905S)",
		"", "BUSKE",
		"741.51", "50",
		"1", 1,
		"Pieces", "1",
		"", "pd1210413441.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[164] = new Element(
		164, "assets/thumb/B1380.jpg",
		120, 90,
		"B1380", "UNI-BRIDGE CHAIN TIGHTENER",
		"with helper bar", "BUSKE",
		"179.22", "11",
		"1", 1,
		"Pieces", "4",
		"", "pd711890839.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[165] = new Element(
		165, "assets/thumb/B1381.jpg",
		120, 90,
		"B1381", "UNI-BRIDGE BASIC",
		"", "BUSKE",
		"160.66", "10",
		"1", 1,
		"Pieces", "4",
		"", "pd1085491301.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[166] = new Element(
		166, "assets/thumb/B1382.jpg",
		120, 40,
		"B1382", "UNI-BRIDGE HELPER BAR",
		"", "BUSKE",
		"27.72", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-1268557541.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[167] = new Element(
		167, "assets/thumb/B588.jpg",
		120, 90,
		"B588", "UTILITY CLAW",
		"", "BUSKE",
		"44.35", "2",
		"1", 1,
		"Pieces", "4",
		"", "pd-1830031167.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[168] = new Element(
		168, "assets/thumb/B589A.jpg",
		120, 90,
		"B589A", "FINGER",
		"For hooking into pull rings, clamps and other tight places where the hook or chain will not pass through. Can also be used as an insert anchor in access holes in frames to anchor body and frame straightening equipment.", "BUSKE",
		"19.4", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-1527895849.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[169] = new Element(
		169, "assets/thumb/B589.jpg",
		120, 90,
		"B589", "INSERT ANCHOR",
		"For 1-5/8&quot; frame holes and 3/4&quot; frame holes", "BUSKE",
		"29.11", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd1822865117.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[170] = new Element(
		170, "assets/thumb/B588S.jpg",
		120, 90,
		"B588S", "SUPER CLAW",
		"Heavy Duty claw hook. Provides a straight pull on the chain link, and eliminates twisting.", "BUSKE",
		"41.58", "2",
		"1", 1,
		"Pieces", "4",
		"", "pd105335891.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[171] = new Element(
		171, "assets/thumb/588k small.jpg",
		120, 90,
		"B588K", "UTILITY CLAW KIT(2-588/2-589/2-589A)",
		"", "BUSKE",
		"176.73", "10",
		"1", 1,
		"Pieces", "4",
		"", "pd426702521.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[172] = new Element(
		172, "assets/thumb/B588KS.jpg",
		120, 90,
		"B588KS", "UTILITY CLAW KIT(2-588/2-589/2-589A/2-588S)",
		"", "BUSKE",
		"249.64", "14",
		"1", 1,
		"Pieces", "4",
		"", "pd-589725809.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[173] = new Element(
		173, "assets/thumb/B804.jpg",
		120, 67,
		"B804", "18&quot; X 3/8&quot; ALLOY CHAIN WITH 1 GRAB &amp; 1 SLIP HOOK",
		"", "BUSKE",
		"49.43", "5",
		"1", 1,
		"Pieces", "4",
		"", "pd1931332693.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[174] = new Element(
		174, "assets/thumb/B805.jpg",
		120, 68,
		"B805", "18&quot; X 3/8&quot; ALLOY CHAIN WITH 2 GRAB HOOKS",
		"", "BUSKE",
		"46.97", "5",
		"1", 1,
		"Pieces", "4",
		"", "pd-1559019893.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[175] = new Element(
		175, "assets/thumb/B542.jpg",
		120, 90,
		"B542S", "8&rsquo; X 3/8&quot; ALLOY CHAIN WITH SLIP HOOK",
		"", "BUSKE",
		"123.59", "14",
		"1", 1,
		"Pieces", "4",
		"", "pd271979441.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[176] = new Element(
		176, "assets/thumb/B731.jpg",
		120, 90,
		"B731", "CHAIN RACK",
		"To keep chain easily accessible but out of the way when not in use.", "BUSKE",
		"64.8", "7",
		"1", 1,
		"Pieces", "4",
		"", "pd-268408627.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[177] = new Element(
		177, "assets/thumb/B502A.jpg",
		120, 90,
		"B502A", "3/8&quot; DOUBLE GRAB HOOK",
		"A convenient utility hook for fastening two chains together of for shortening a chain.", "BUSKE",
		"51.45", "2",
		"1", 1,
		"Pieces", "4",
		"", "pd-1938681917.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[178] = new Element(
		178, "assets/thumb/B502B.jpg",
		120, 90,
		"B502B", "3/8&quot; GRAB/SLIP HOOK",
		"A handy hook for hooking into clamp or plate pull rings, or hooking onto a chain between two floor anchors plus many other uses.", "BUSKE",
		"51.45", "2",
		"1", 1,
		"Pieces", "4",
		"", "pd618846719.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[179] = new Element(
		179, "assets/thumb/B711.jpg",
		120, 90,
		"B711", "3/8&quot; SHACKLE TYPE GRAB HOOK",
		"Attaches directly to the chain. No connecting links needed. The hot-forged and heat-treated shackle chain hooks are extra strong and extra tough. The alloy hooks are heat treated and tempered for use with alloy chain.", "BUSKE",
		"20.16", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd1439342587.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[180] = new Element(
		180, "assets/thumb/B717.jpg",
		120, 90,
		"B717", "3/8&quot; SHACKLE TYPE SLIP HOOK",
		"Attaches directly to chain, no connecting links to buy. The large deep throat will slip onto chain and bars of hook directly into concealed floor anchor or clamp pull rings.", "BUSKE",
		"28.88", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-884731231.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[181] = new Element(
		181, "assets/thumb/B460A.jpg",
		120, 90,
		"B460A", "3/8&quot; EYE TYPE GRAB HOOK",
		"Eye type grab hooks are used on the Buske U-400 protable body and frame aligner and PL-650 collision post. The #460A alloy grab hook must be used on the collision post and the power bar of the U-400.", "BUSKE",
		"15.25", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd1085494113.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[182] = new Element(
		182, "assets/thumb/B732.jpg",
		120, 90,
		"B732", "3/8&quot; FORD T-HOOK WITH CHAIN",
		"The T-hook is for the slotted holes found in GM, Ford and many other under bodies for a fast anchor or pulling point.", "BUSKE",
		"32.78", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1748906663.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[183] = new Element(
		183, "assets/thumb/B733.jpg",
		120, 90,
		"B733", "3/8&quot; GM R-HOOK WITH CHAIN",
		"R-hook fits 3/4&quot; round holes found in the under bodies such as Chrysler, AMC, and many other vehicles for a fast anchor or hook up point.", "BUSKE",
		"32.78", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd1796126511.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[184] = new Element(
		184, "assets/thumb/B697.jpg",
		120, 131,
		"B697-1", "LEVEL ANCHOR",
		"Use with any floor pull system.", "BUSKE",
		"191.56", "34",
		"1", 1,
		"Pieces", "4",
		"", "pd643845365.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[185] = new Element(
		185, "assets/thumb/B560I.jpg",
		120, 90,
		"B560-I", "E-Z FLOOR ANCHOR",
		"", "BUSKE",
		"51.9", "7",
		"1", 1,
		"Pieces", "9",
		"", "pd-349687765.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[186] = new Element(
		186, "assets/thumb/B525.jpg",
		120, 90,
		"B525", "CONCEALED FLOOR ANCHOR",
		"includes anchor body #527 and cover #526", "BUSKE",
		"129.77", "26",
		"1", 1,
		"Pieces", "9",
		"", "pd-1710825903.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[187] = new Element(
		187, "assets/thumb/B532.jpg",
		120, 178,
		"B532", "FLOOR ANCHOR TURRET",
		"", "BUSKE",
		"197.74", "23",
		"1", 1,
		"Pieces", "9",
		"", "pd1085518961.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[188] = new Element(
		188, "assets/thumb/B1341-2.jpg",
		120, 164,
		"B1341", "EZ BOLT ANCHOR ASSEMBLY",
		"INCLUDES BOLT AND WASHER", "BUSKE",
		"67.54", "4",
		"1", 1,
		"Pieces", "9",
		"", "pd-1375448057.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[189] = new Element(
		189, "assets/thumb/B1349.gif",
		120, 104,
		"B1349", "EZ BOLT ANCHOR PULL ADAPTOR",
		"The 1349 adapter converts the EZ Bolt Anchor to a pulling anchor for pulling equipment of for use as a tie down.", "BUSKE",
		"55.62", "3",
		"1", 1,
		"Pieces", "9",
		"", "pd2078250381.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[190] = new Element(
		190, "assets/thumb/B780.jpg",
		120, 90,
		"B780R-1", "HYRA-PULL W/ 4 TON RAM",
		"Converts standard Push Ram into a standard 4-Ton Pull Ram. As ram pushes out, hooks pull in.", "BUSKE",
		"427.6", "13",
		"1", 1,
		"Pieces", "8",
		"", "pd1178602115.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[191] = new Element(
		191, "assets/thumb/B780.jpg",
		120, 90,
		"B780-1", "HYRA-PULL",
		"Converts standard Push Ram into a standard 4-Ton Pull Ram. As ram pushes out, hooks pull in.", "BUSKE",
		"106.28", "9",
		"1", 1,
		"Pieces", "8",
		"", "pd-1590124439.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[192] = new Element(
		192, "assets/thumb/M6356.jpg",
		120, 80,
		"M6356-1", "POWER PRESS PLATE",
		"", "MO CLAMP",
		"91.91", "3",
		"1", 1,
		"Pieces", "8",
		"", "pd1529543155.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[193] = new Element(
		193, "assets/thumb/M6357.jpg",
		120, 80,
		"M6357-1", "MULTI-PAD METAL W/ POWER PRESS PLATE KIT",
		"Kit includes both #6355, Multi-Pad and #6356, Power Press Plate.", "MO CLAMP",
		"181.98", "5",
		"1", 1,
		"Pieces", "8",
		"", "pd-870523559.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[194] = new Element(
		194, "assets/thumb/B798.jpg",
		120, 90,
		"B797", "8&rsquo; HYDRAULIC HOSE",
		"", "BUSKE",
		"101.34", "3",
		"1", 1,
		"Pieces", "8",
		"", "pd287328047.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[195] = new Element(
		195, "assets/thumb/B798.jpg",
		120, 90,
		"B798", "12&rsquo; HYDRAULIC HOSE",
		"", "BUSKE",
		"154.49", "4",
		"1", 1,
		"Pieces", "8",
		"", "pd520903925.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[196] = new Element(
		196, "assets/thumb/B684.jpg",
		120, 90,
		"B684", "10 TON X 10&quot; HYD. RAM",
		"The 10-ton #684 ram has a 10&quot; stroke. Can be used with air/hydraulic or hand pump.", "BUSKE",
		"457.26", "15",
		"1", 1,
		"Pieces", "8",
		"", "pd301121579.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[197] = new Element(
		197, "assets/thumb/B684.gif",
		120, 35,
		"B685", "4 TON X 5&quot; HYD. RAM",
		"The 4-ton #685 has a 5&quot; stroke. Can be used with air/hydraulic or hand pump.", "BUSKE",
		"321.32", "4",
		"1", 1,
		"Pieces", "8",
		"", "pd-971772335.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[198] = new Element(
		198, "assets/thumb/687 SMALL.jpg",
		120, 92,
		"B687", "AIR/HYD PUMP, HOSE, RAM &amp; COUPLER SET",
		"An excellent combination that puts an end to hand pumping. Greatly speeds up body and frame pulls. Provides excellent control of the work.", "BUSKE",
		"1127.09", "18",
		"1", 1,
		"Pieces", "8",
		"", "pd1063952615.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[199] = new Element(
		199, "assets/thumb/B686.jpg",
		120, 90,
		"B686", "AIR/HYD. PUMP &amp; HOSE",
		"Smooth powerful ram operation with the touch of a toe. Speeds up pulling operations, ends tedious hand pumping.", "BUSKE",
		"730.28", "18",
		"1", 1,
		"Pieces", "8",
		"", "pd-39441043.htm",
		"", 1,
		"010", "0",
		 0)
	
		Entry[200] = new Element(
		200, "assets/thumb/B1325F.jpg",
		120, 90,
		"B1325F-1", "POSI-LOCK/UNI-CLAMP",
		"Includes (4) assemblies below, (8) 1341 E-Z Anchor and (2) 1340.", "BUSKE",
		"4319.3", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-299113117.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[201] = new Element(
		201, "assets/thumb/B509M 2P Mercedes BMW Clamp.jpg",
		120, 182,
		"B509M-1", "MERCEDEES/BMW CLAMP (set of 4)",
		"Pins insert into the jacking holes on Mercedes for fast anchoring on the UniRack or Posi-Lock.", "BUSKE",
		"606.31", "24",
		"1", 1,
		"Pieces", "0",
		"", "pd-1504094911.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[202] = new Element(
		202, "assets/thumb/B509K.jpg",
		120, 90,
		"B509K-1", "HONDA CONVERSION KIT",
		"Includes 4 each 509HP and 509HC. Simplifies anchoring the Honda with horizontal pinch welds.", "BUSKE",
		"531.42", "36",
		"1", 1,
		"Pieces", "0",
		"", "pd-531143843.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[203] = new Element(
		203, "assets/thumb/M6305.jpg",
		120, 80,
		"M6305", "5/16&quot; GM R HOOK WITH CHAIN",
		"GM &quot;R&quot; Hook, 5/16&quot; (7.94 mm) chain.", "MO CLAMP",
		"22.3", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1526084397.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[204] = new Element(
		204, "assets/thumb/M6310.jpg",
		120, 80,
		"M6310", "5/16&quot; FORD T HOOK WITH CHAIN",
		"Ford &quot;T&quot; Hook, 5/16&quot; (7.94 mm) chain.", "MO CLAMP",
		"25.59", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-899192007.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[205] = new Element(
		205, "assets/thumb/M6309.jpg",
		120, 80,
		"M6309", "GM R HOOK W/ GRAB HOOK",
		"GM &quot;R&quot; Hook w/grab hook.", "MO CLAMP",
		"22.54", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-2008479729.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[206] = new Element(
		206, "assets/thumb/M6313.jpg",
		120, 80,
		"M6313", "FORD T HOOK W/ GRAB HOOK",
		"Ford &quot;T&quot; Hook w/grab hook.", "MO CLAMP",
		"21.62", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1146451755.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[207] = new Element(
		207, "assets/thumb/M6317.jpg",
		120, 90,
		"M6317", "3/8&quot; J HOOK W/ CHAIN",
		"&quot;J&quot; Hook w/ chain.", "MO CLAMP",
		"", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd1615875851.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[208] = new Element(
		208, "assets/thumb/M6318.jpg",
		120, 90,
		"M6318", "J HOOK W/ GRAB HOOK",
		"&quot;J&quot; Hook w/ grab hook.", "MO CLAMP",
		"31.84", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd1818990641.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[209] = new Element(
		209, "assets/thumb/M4059.jpg",
		120, 80,
		"M4059", "5/8 ANCHOR SHACKLE",
		"5/8&quot; Screw Pin Shackle for use with #5802.", "MO CLAMP",
		"32.55", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-95035961.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[210] = new Element(
		210, "assets/thumb/M5626.jpg",
		120, 90,
		"M5626", "3/8&quot; ANCHOR SHACKLE",
		"3/8&quot; Screw Pin Shackle for use with #5623.", "MO CLAMP",
		"14.21", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-365218483.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[211] = new Element(
		211, "assets/thumb/M4054.jpg",
		120, 80,
		"M4054", "1/2&quot; SCREW PIN SHACKLE WITH TRIANGLE",
		"", "MO CLAMP",
		"36.89", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1723092925.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[212] = new Element(
		212, "assets/thumb/M4051small.jpg",
		120, 93,
		"M4051", "EYE NUT, 5/8 THREAD",
		"", "MO CLAMP",
		"15.25", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-439632855.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[213] = new Element(
		213, "assets/thumb/M4052.jpg",
		120, 101,
		"M4052", "TRIANGLE",
		"", "MO CLAMP",
		"20.08", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-417627521.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[214] = new Element(
		214, "assets/thumb/M4043small.jpg",
		120, 93,
		"M4043", "OVAL LOOP",
		"", "MO CLAMP",
		"18.79", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd1988970693.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[215] = new Element(
		215, "assets/thumb/M1700.jpg",
		120, 80,
		"M1700", "CHAIN LOCKING FORK",
		"Handy stopper for chain. Used to maintain chain tension while adjusting for pulls. Locks chain tight. Heat-treated alloy steel. Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"27.66", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd1369624699.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[216] = new Element(
		216, "assets/thumb/M6600.jpg",
		120, 80,
		"M6600", "CHAIN SNUGGER",
		"Use the Chain Snugger to tighten chain on frame racks for secure hold-downs. Use in conjunction with #1700 Chain Locking Fork.", "MO CLAMP",
		"106.17", "7",
		"1", 1,
		"Pieces", "4",
		"", "pd805943073.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[217] = new Element(
		217, "assets/thumb/M1150.jpg",
		120, 80,
		"M1150", "CHAIN SPREADER BAR",
		"The Chain Spread Bar enables the bodyman to make pulls around box rails or other obstacles, while maintaining the distance between pulling clamps.", "MO CLAMP",
		"42.38", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd258922039.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[218] = new Element(
		218, "assets/thumb/M1000.jpg",
		120, 80,
		"M1000", "HANDY HOOK",
		"A great time saver with Mo-Clamp&rsquo;s easy hook-up system. No chain is too long and no hooks are needed on the chain. Alloy heat-treated steel. Pulling slots can be used with Hole Pull Adapters (#0900). Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"35.16", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd620798781.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[219] = new Element(
		219, "assets/thumb/M1100.jpg",
		120, 80,
		"M1100", "HANDY LINK",
		"Chain too long? Make it shorter! Chain too short? Make it longer! Alloy heat-treated steel. Pulling slots can be used with Hole Pull Adapers (#0900). Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"30.86", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-935817293.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[220] = new Element(
		220, "assets/thumb/B478A.jpg",
		120, 90,
		"B478A", "1/2&quot; ANCHOR SHACKLE",
		"", "BUSKE",
		"27.72", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd876833049.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[221] = new Element(
		221, "assets/thumb/B479.jpg",
		120, 90,
		"B479", "7/16&quot; ANCHOR SHACKLE",
		"Attaches to #1390. Adjustable frame pulling clamp.", "BUSKE",
		"30.49", "1",
		"1", 1,
		"Pieces", "4",
		"", "pd-1658799889.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[222] = new Element(
		222, "assets/thumb/M1200.jpg",
		120, 80,
		"M1200", "TWIN PULL",
		"Do you have need for a light pull but a larger gripping area? The Twin Pull enables you to use two clamps side by side for more pull. Also, can be used with two Sill Hooks (#1300), Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"40.49", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1152310091.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[223] = new Element(
		223, "assets/thumb/M1650.jpg",
		120, 80,
		"M1650", "DOUBLE EYE CHAIN HOOK",
		"", "MO CLAMP",
		"68.06", "4",
		"1", 1,
		"Pieces", "4",
		"", "pd212585963.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[224] = new Element(
		224, "assets/thumb/M4110.jpg",
		120, 80,
		"M4110", "SINGLE CLAW HOOK",
		"Drop forged! Use as an accessory with draw bars or chain. Use a pair with Triangle or Oval Loop as a chain shortener, double hook, bumper hook. Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"32.91", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-1968000495.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[225] = new Element(
		225, "assets/thumb/M4120.jpg",
		120, 80,
		"M4120", "DOUBLE CLAW HOOK",
		"For use as a chain shortener, chain connector or double hook, Designed for use with 3/8&quot; chain.", "MO CLAMP",
		"44.79", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-293729625.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[226] = new Element(
		226, "assets/thumb/M4130.jpg",
		120, 80,
		"M4130", "HOLE PLUG",
		"Four-way anchoring tool allows unlimited body and frame hook-up in existing holes. Fastens directly to 3/8&quot; chain.", "MO CLAMP",
		"50.15", "6",
		"1", 1,
		"Pieces", "4",
		"", "pd-1206473427.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[227] = new Element(
		227, "assets/thumb/M4131.jpg",
		120, 80,
		"M4131", "MO-PLUG",
		"Use in existing holes in frame or unibody. Plugs on two sided only to allow easy fit into a narrow internal section of a frame rail. Connects to 3/8&quot; chain.", "MO CLAMP",
		"48.17", "3",
		"1", 1,
		"Pieces", "4",
		"", "pd-2099811549.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[228] = new Element(
		228, "assets/thumb/M4150.jpg",
		120, 80,
		"M4150", "DOUBLE LOOPER",
		"Two Single Claws with Triangle. Grabs bumpers or panels. Easy 3/8&quot; chain connection. Triangle allows for center pull.", "MO CLAMP",
		"74.44", "4",
		"1", 1,
		"Pieces", "4",
		"", "pd-1439862263.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[229] = new Element(
		229, "assets/thumb/M4151.jpg",
		120, 80,
		"M4151", "24&quot; GRAB HOOK/SINGLE CLAW",
		"For quick hook-ups and multiple pulls. Includes 18 inches of 3/8&quot; Mo-Clamp Chain.", "MO CLAMP",
		"78.4", "6",
		"1", 1,
		"Pieces", "4",
		"", "pd1372564319.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[230] = new Element(
		230, "assets/thumb/M4152.jpg",
		120, 80,
		"M4152", "25&quot; TWO SINGLE CLAWS",
		"For quick hook-ups and multiple pulls. Includes 18 inches of 3/8&quot; Mo-Clamp Chain.", "MO CLAMP",
		"83.57", "6",
		"1", 1,
		"Pieces", "4",
		"", "pd2051349669.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[231] = new Element(
		231, "assets/thumb/M4153.jpg",
		120, 80,
		"M4153", "25 3/4&quot; HOLE PLUG/CLEVIS HOOK",
		"For quick hook-ups and multiple pulls. Includes 18 inches of 3/8&quot; Mo-Clamp Chain.", "MO CLAMP",
		"79.61", "8",
		"1", 1,
		"Pieces", "4",
		"", "pd1448232795.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[232] = new Element(
		232, "assets/thumb/M4154.jpg",
		120, 80,
		"M4154", "26 1/2&quot; HOLE PLUG/SINGLE CLAW",
		"For quick hook-ups and multiple pulls. Includes 18 inches of 3/8&quot; Mo-Clamp Chain.", "MO CLAMP",
		"91.67", "8",
		"1", 1,
		"Pieces", "4",
		"", "pd-2019194623.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[233] = new Element(
		233, "assets/thumb/M3001.jpg",
		120, 80,
		"M3001", "MO-HLOE ANCHOR POT (Cast in model available)",
		"", "MO CLAMP",
		"84.34", "5",
		"1", 1,
		"Pieces", "9",
		"", "pd-1327858921.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[234] = new Element(
		234, "assets/thumb/M3051.jpg",
		120, 80,
		"M3051", "T-TOP ANCHOR POT (cast in model available)",
		"", "MO CLAMP",
		"65.02", "6",
		"1", 1,
		"Pieces", "9",
		"", "pd-659795171.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[235] = new Element(
		235, "assets/thumb/M3071.jpg",
		120, 80,
		"M3071", "MO-TY ANCHOR POT",
		"", "MO CLAMP",
		"62.33", "8",
		"1", 1,
		"Pieces", "9",
		"", "pd-571522413.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[236] = new Element(
		236, "assets/thumb/M3081.jpg",
		120, 78,
		"M3081", "T-TOP 11 ANCHOR POT",
		"Installs using only the installation tool (#3082) and a torque wrench. Provides a full 10 tons of pulling capacity using 3/8&quot; chain. Lies flush with floor when not in use. 3 1/2&quot; (89mm) cored hole is required.", "MO CLAMP",
		"61.49", "6",
		"1", 1,
		"Pieces", "9",
		"", "pd-1515661575.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[237] = new Element(
		237, "assets/thumb/M6300.jpg",
		120, 80,
		"M6300", "30&quot; NYLON SLING",
		"Protects area where chain may damage structure. Can be made into a cinch. 30&quot; long and 3&quot; wide", "MO CLAMP",
		"55.09", "2",
		"1", 1,
		"Pieces", "5",
		"", "pd1085528219.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[238] = new Element(
		238, "assets/thumb/M6301.jpg",
		120, 80,
		"M6301", "20 1/2&quot; NYLON SLING W/ METAL TRIANGLES",
		"Protects finish from mars. 30&quot; long and 4&quot; wide", "MO CLAMP",
		"62.38", "5",
		"1", 1,
		"Pieces", "5",
		"", "pd-281117631.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[239] = new Element(
		239, "assets/thumb/M6302.jpg",
		120, 80,
		"M6302", "30&quot; SLING W/ PEAR &amp; TRIANGLE",
		"Protects finish from mars. Wraps around and protects pillars while spreading the force. Forged pull loops for exceptional toughness.", "MO CLAMP",
		"96.21", "5",
		"1", 1,
		"Pieces", "5",
		"", "pd-1816027049.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[240] = new Element(
		240, "assets/thumb/M6303.jpg",
		120, 80,
		"M6303", "60&quot; SLING W/ SEWN LOOPS",
		"Protects finish from mars.", "MO CLAMP",
		"73.82", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd-199951779.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[241] = new Element(
		241, "assets/thumb/M6304.jpg",
		120, 80,
		"M6304", "60&quot; SLING W/ SEWN LOOPS &amp; PROTECTIVE BACKING",
		"Protects finish from mars. With inside Mo-Guard protective covering for extra long life.", "MO CLAMP",
		"100.29", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd628964307.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[242] = new Element(
		242, "assets/thumb/M6307.jpg",
		120, 80,
		"M6307", "60&quot; SECURING SLING W/ SNAP RINGS",
		"Use as a safeguard against separation, breakage of temporary welds or clamp failure. NOT MEANT FOR PULLING - FOR RESTRAINT ONLY.", "MO CLAMP",
		"67.98", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd1524920889.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[243] = new Element(
		243, "assets/thumb/M6308.jpg",
		120, 80,
		"M6308", "30&quot; SECURING SLING W/ SNAP RINGS",
		"Use as a safeguard against separation, breakage of temporary welds or clamp failure. NOT MEANT FOR PULLING - FOR RESTRAINT ONLY.", "MO CLAMP",
		"65.48", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd323577615.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[244] = new Element(
		244, "assets/thumb/M6350.jpg",
		120, 80,
		"M6350", "36&quot; CABLE SLING",
		"Wrap around pulls. Can be used as a choker.", "MO CLAMP",
		"38.33", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd-1623326763.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[245] = new Element(
		245, "assets/thumb/M6380.jpg",
		120, 90,
		"M6380", "36&quot; MO-FLEX SLING",
		"Mo-Flex Sling 36&quot;", "MO CLAMP",
		"47.74", "3",
		"1", 1,
		"Pieces", "5",
		"", "pd806133259.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[246] = new Element(
		246, "assets/thumb/M6381.jpg",
		120, 90,
		"M6381", "60&quot; MO-FLEX SLING",
		"Mo-Flex Sling 60&quot;", "MO CLAMP",
		"73.89", "5",
		"1", 1,
		"Pieces", "5",
		"", "pd1155301169.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[247] = new Element(
		247, "assets/thumb/M6382.jpg",
		120, 90,
		"M6382", "MO-FLEX PROTECTIVE PAD",
		"Mo-Flex Pad", "MO CLAMP",
		"22.68", "2",
		"1", 1,
		"Pieces", "5",
		"", "pd-1041425209.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[248] = new Element(
		248, "assets/thumb/B696.jpg",
		120, 90,
		"B696-1", "FENDER STRAPS (pair)",
		"", "BUSKE",
		"122.35", "4",
		"1", 1,
		"Pieces", "5",
		"", "pd1002474573.htm",
		"", 1,
		"007", "0",
		 0)
	
		Entry[249] = new Element(
		249, "assets/thumb/B1080B.jpg",
		120, 147,
		"B1080", "EXPAND-0-STANCHION",
		"", "BUSKE",
		"525.24", "60",
		"1", 1,
		"Pieces", "7",
		"", "pd1085593458.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[250] = new Element(
		250, "assets/thumb/B950M.jpg",
		120, 160,
		"B950M", "DOOR &amp; BUMPER POSITIONER",
		"", "BUSKE",
		"605.57", "81",
		"1", 1,
		"Pieces", "7",
		"", "pd814420720.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[251] = new Element(
		251, "assets/thumb/S20350.jpg",
		120, 127,
		"S20350", "PRO STEP",
		"Never put it away, you&rsquo;ll need it every day!", "STECK",
		"150", "45",
		"1", 1,
		"Pieces", "7",
		"", "pd-747046456.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[252] = new Element(
		252, "assets/thumb/S35800.jpg",
		120, 144,
		"S35800", "BUMPER TREE (casters now included)",
		"Sand, Mask, Prep &amp; Paint All on the Bumper Tree!", "STECK",
		"176.68", "23",
		"1", 1,
		"Pieces", "7",
		"", "pd7902518.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[253] = new Element(
		253, "assets/thumb/DSC00898.JPG",
		120, 90,
		"B1375-1", "DOOR ALIGNER",
		"Align Front or Rear Doors Up or Down In A Jiffy", "BUSKE",
		"105.05", "4",
		"1", 1,
		"Pieces", "7",
		"", "pd1569856940.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[254] = new Element(
		254, "assets/thumb/S35885.jpg",
		120, 73,
		"S35885", "SPACE SAVER BED LIFTER",
		"", "STECK",
		"253.7", "40",
		"1", 1,
		"Pieces", "7",
		"", "pd1085601915.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[255] = new Element(
		255, "assets/thumb/B900K.jpg",
		120, 90,
		"B900K-1", "MULTI-STUD PULLER KIT",
		"The new 900K comes with the 901 a 7&quot; long plate with 34 hole placements &amp; the 902 a 3 1/2&quot; long 7/16&quot; Cleivs", "BUSKE",
		"92.69", "5",
		"1", 1,
		"Pieces", "2",
		"", "pd615983889.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[256] = new Element(
		256, "assets/thumb/B901.jpg",
		120, 90,
		"B901-1", "7&quot; MULTI-STUD PULLER",
		"", "BUSKE",
		"56.7", "3",
		"1", 1,
		"Pieces", "2",
		"", "pd-405066841.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[257] = new Element(
		257, "assets/thumb/B902.jpg",
		120, 110,
		"B902-1", "3-1/2 MULTISTUD PULLER",
		"", "BUSKE",
		"41.58", "2",
		"1", 1,
		"Pieces", "2",
		"", "pd907851309.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[258] = new Element(
		258, "assets/thumb/B1050.jpg",
		120, 90,
		"B1050K", "HOOK  KIT",
		"# 1050S, #1050M, #1050L, #1050J", "BUSKE",
		"784.77", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd1085699335.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[259] = new Element(
		259, "assets/thumb/B600R-1.jpg",
		120, 58,
		"B600R", "3 GAUGE NON-MAGNETIC W/ RACK",
		"", "BUSKE",
		"703.2", "20",
		"1", 1,
		"Pieces", "6",
		"", "pd1085702301.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[260] = new Element(
		260, "assets/thumb/B600R-1.jpg",
		120, 58,
		"B600", "3 GAUGE NON-MAGNETIC",
		"", "BUSKE",
		"636.46", "14",
		"1", 1,
		"Pieces", "6",
		"", "pd-1282724845.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[261] = new Element(
		261, "assets/thumb/B600R-1.jpg",
		120, 58,
		"B601R", "3 GAUGE MAGNETIC W/ RACK",
		"", "BUSKE",
		"834.2", "21",
		"1", 1,
		"Pieces", "6",
		"", "pd1085702655.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[262] = new Element(
		262, "assets/thumb/B600R-1.jpg",
		120, 58,
		"B601", "3 GAUGE MAGNETIC",
		"", "BUSKE",
		"772.41", "15",
		"1", 1,
		"Pieces", "6",
		"", "pd-1154591675.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[263] = new Element(
		263, "assets/thumb/B602R-1.jpg",
		120, 65,
		"B602R", "4 GAUGE NON-MAGNETIC W/ RACK",
		"", "BUSKE",
		"855.21", "23",
		"1", 1,
		"Pieces", "6",
		"", "pd1085703153.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[264] = new Element(
		264, "assets/thumb/B602R-1.jpg",
		120, 65,
		"B602", "4 GAUGE NON-MAGNETIC",
		"", "BUSKE",
		"790.94", "17",
		"1", 1,
		"Pieces", "6",
		"", "pd-1265520761.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[265] = new Element(
		265, "assets/thumb/B602R-1.jpg",
		120, 65,
		"B603R", "4 GUAGE MAGNETIC W/ RACK",
		"", "BUSKE",
		"1038.11", "25",
		"1", 1,
		"Pieces", "6",
		"", "pd1085703264.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[266] = new Element(
		266, "assets/thumb/B602R-1.jpg",
		120, 65,
		"B603", "4 GUAGE MAGNETIC",
		"", "BUSKE",
		"970.14", "19",
		"1", 1,
		"Pieces", "6",
		"", "pd-1807711858.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[267] = new Element(
		267, "assets/thumb/B741.jpg",
		120, 63,
		"B741", "UNI-STRUT:FOR TOWER GAUGE ANALYSIS",
		"For quick, true and tower strut alignment, nothing beats the Uni-Strut 741", "BUSKE",
		"630.28", "10",
		"1", 1,
		"Pieces", "6",
		"", "pd1085703549.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[268] = new Element(
		268, "assets/thumb/B870A.jpg",
		120, 90,
		"B870A", "TRAM GAUGE",
		"", "BUSKE",
		"389.3", "11",
		"1", 1,
		"Pieces", "6",
		"", "pd-1922941965.htm",
		"", 1,
		"008", "0",
		 0)
	
		Entry[269] = new Element(
		269, "assets/thumb/B756W.gif",
		120, 375,
		"B756W", "MINI POST WITH WINCH",
		"Includes 621 Mini-Winch for light duty pulls. Attach winch from post to damage, then tie other side of post to floor anchor.", "BUSKE",
		"284.13", "30",
		"1", 1,
		"Pieces", "0",
		"", "pd-157507731.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[270] = new Element(
		270, "assets/thumb/B756.jpg",
		120, 290,
		"B756", "MINI POST",
		"This special light duty post is ideal for sheet metal pulls. 6&quot; to 60&quot; adjustable height pull. Easy to carry and position One-ton-capacity.", "BUSKE",
		"191.56", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-1248876701.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[271] = new Element(
		271, "assets/thumb/BPL550.jpg",
		120, 285,
		"BPL-550H", "10 Ton Pulling Post with Hydraulics",
		"10 Ton Pulling Post with Air/Hyd. Pump and 10&quot; Cylinder,two 8&rsquo;  chains", "BUSKE",
		"2424.51", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1086165863.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[272] = new Element(
		272, "assets/thumb/BPL-750.jpg",
		120, 160,
		"BPLT-770H", "10 Ton Truck Post with Hydraulics",
		"The BPLT-770 Truck 10 foot  Post is designed to make high pulls on truck cabs, busses and trailers", "BUSKE",
		"5375.95", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1086693794.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[273] = new Element(
		273, "assets/thumb/BPL650POST2.jpg",
		120, 253,
		"BPL-650H", "10 Ton Pulling Post with Hydraulics",
		"6 Foot Power Beam", "BUSKE",
		"3516", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1356572832.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[274] = new Element(
		274, "assets/thumb/BPL650POST2.jpg",
		120, 253,
		"BPL-650", "10 Ton Pulling Post without Hydraulics",
		"6 Foot Power Beam", "BUSKE",
		"2329.58", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1647525838.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[275] = new Element(
		275, "assets/thumb/BPL650POST2.jpg",
		120, 253,
		"BPL-650BH", "10 Ton Pulling Post with Hydraulics",
		"7 Foot Power Beam", "BUSKE",
		"3515.99", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd-1596874068.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[276] = new Element(
		276, "assets/thumb/BPL650POST2.jpg",
		120, 253,
		"BPL-650B", "10 Ton Pulling Post without Hydraulics",
		"7 Foot Power Beam", "BUSKE",
		"2391.38", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd926709946.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[277] = new Element(
		277, "assets/thumb/BPL100.jpg",
		120, 226,
		"BPL-100", "4 Ton Pulling Post without Hydraulics",
		"3-Speed, 3 Power, 4 Ton Collision Post", "BUSKE",
		"957.79", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd518420582.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[278] = new Element(
		278, "assets/thumb/B860A Flat Tong.jpg",
		120, 68,
		"B860A", "SURE GRIP TONG CLAMP",
		"", "BUSKE",
		"234.81", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd1086884889.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[279] = new Element(
		279, "assets/thumb/B555.jpg",
		120, 118,
		"B555-1", "HINGE PLATE",
		"Hinge plate bolts to the hinge mounting pad. For making fast pulls on door pillars and cowls. Can also be used in many other places as a pull plate.", "BUSKE",
		"51.91", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd-685835203.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[280] = new Element(
		280, "assets/thumb/M5010.jpg",
		120, 90,
		"M5010-1", "No. 1 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"807.98", "50",
		"1", 1,
		"Pieces", "1",
		"", "pd583176371.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[281] = new Element(
		281, "assets/thumb/M5078.jpg",
		120, 90,
		"M5078-1", "No. 10 TOOL BOARD W/TOOLS",
		"", "MO CLAMP",
		"2466.42", "157",
		"1", 1,
		"Pieces", "1",
		"", "pd1858163225.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[282] = new Element(
		282, "assets/thumb/M5013.jpg",
		120, 120,
		"M5013-1", "Deluxe No. 1 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"2833.12", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd324323823.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[283] = new Element(
		283, "assets/thumb/M5090.jpg",
		120, 90,
		"M5090-1", "No. 9 TOOL BOARD W/ TOOLS",
		"", "MO CLAMP",
		"903.18", "40",
		"1", 1,
		"Pieces", "1",
		"", "pd801611189.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[284] = new Element(
		284, "assets/thumb/BPL550.jpg",
		120, 285,
		"BPL550", "10 Ton Pulling Post without Hydraulics",
		"", "BUSKE",
		"1050.47", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1087910474.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[285] = new Element(
		285, "assets/thumb/BPL650E.jpg",
		120, 222,
		"BPL-650E", "10 Ton Economy Post ",
		"7&rsquo; Post without Hyd./Chain/Sheave/Push Adaptor", "BUSKE",
		"1934.11", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1546013064.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[286] = new Element(
		286, "assets/thumb/BU400B.jpg",
		120, 90,
		"BU400B", "PORTABLE BODY &amp; FRAME ALIGNER (informational photo set, item has been discontinued)",
		"BASIC UNIT AND ACCESSORIES", "BUSKE",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1995270902.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[287] = new Element(
		287, "assets/thumb/B542-2.jpg",
		120, 90,
		"B542", "8&rsquo; X 3/8&quot; ALLOY CHAIN WITH GRAB HOOK",
		"", "BUSKE",
		"123.59", "14",
		"1", 1,
		"Pieces", "4",
		"", "pd1087991433.htm",
		"", 1,
		"006", "0",
		 0)
	
		Entry[288] = new Element(
		288, "assets/thumb/B1340.jpg",
		120, 159,
		"B1340", "EZ BOLT ANCHOR ASSEMBLY",
		"DOES NOT INCLUDE BOLT OR WASHER", "BUSKE",
		"50.94", "4",
		"1", 1,
		"Pieces", "9",
		"", "pd-549585953.htm",
		"", 1,
		"011", "0",
		 0)
	
		Entry[289] = new Element(
		289, "assets/thumb/B1455.jpg",
		120, 88,
		"B1455-1", "SET OF SIX (6) FRAME TWISTERS",
		"!!!WOW!!! BUY 6 AND SAVE $150.00 ", "BUSKE",
		"999.18", "95",
		"1", 1,
		"Pieces", "10",
		"", "pd1712518009.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[290] = new Element(
		290, "assets/thumb/900k-9.jpg",
		120, 61,
		"B900KD", "MULTI-STUD PULLER DELUX KIT",
		"The new 900KD comes with TWO (2)  901 a 7&quot; long plates with 34 hole placements each, One 902 a 3 1/2&quot; long stud puller, TWO (2)  7/16&quot; Cleivses, and ONE 903 Extender", "BUSKE",
		"245.93", "9",
		"1", 1,
		"Pieces", "2",
		"", "pd1094673493.htm",
		"", 1,
		"004", "0",
		 0)
	
		Entry[291] = new Element(
		291, "assets/thumb/AV2 RACK SHOT CLEAR IMAGE.jpg",
		200, 80,
		"AVENGER II", "IMPACT AVENGER II DRIVE ON RACK SYSTEM",
		"THIS IS A TRUE 360 DEGREE RACK WITH TWO TOWERS     P.O.R.", "BUSKE",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1096664342.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[292] = new Element(
		292, "assets/thumb/meis clamp 1.jpg",
		200, 195,
		"B1500", "Radius Pull Clamp",
		"Radius Pull Clamp", "BUSKE",
		"220.45", "13",
		"1", 1,
		"Pieces", "1",
		"", "pd1100703151.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[293] = new Element(
		293, "assets/thumb/truck bed dolly 2.jpg",
		200, 156,
		"BTD99", "TRUCK BED DOLLY",
		"TRUCK BED DOLLY", "Brut",
		"399", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-1307091789.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[294] = new Element(
		294, "assets/thumb/DoorDollys 1.jpg",
		200, 215,
		"BDD77", "DOOR DOLLY",
		"DOOR DOOLY", "Brut",
		"477", "0",
		"1", 1,
		"Pieces", "7",
		"", "pd-2083324391.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[295] = new Element(
		295, "assets/thumb/magnum with car.jpg",
		200, 130,
		"MAGNUM", "MAGNUM 360 DEGREE FRAME MACHINE",
		"The New Longer &amp; Wider Series Gives You More Room For Big Trucks &amp; Sport Utilities   P.O.R.", "BUSKE",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1108657318.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[296] = new Element(
		296, "assets/thumb/titan small.jpg",
		200, 72,
		"TITAN", "TITAN",
		"A Clear Floor System   P.O.R.", "BUSKE",
		"0", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd398398276.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[297] = new Element(
		297, "assets/thumb/seam buster small.jpg",
		120, 165,
		"S20015", "Seam Buster",
		"", "STECK",
		"29.95", "3",
		"1", 1,
		"Pieces", "7",
		"", "pd1110923771.htm",
		"", 1,
		"009", "0",
		 0)
	
		Entry[298] = new Element(
		298, "assets/thumb/trueway domestic 120pix.jpg",
		120, 90,
		"B613D", "Tru-Way Dimension Book For Domestic Vehicles",
		"", "BUSKE",
		"190", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd1112127899.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[299] = new Element(
		299, "assets/thumb/trueway imp. 120pix.jpg",
		120, 90,
		"B613I", "Tru-Way Dimension Book For Import Vehicles",
		"", "BUSKE",
		"190", "2",
		"1", 1,
		"Pieces", "10",
		"", "pd992691521.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[300] = new Element(
		300, "assets/thumb/bulldog clamp small.jpg",
		120, 96,
		"S20020", "The BULLDOG Curved Clamp",
		"Ideal for making pulls on curved areas", "STECK",
		"82", "5",
		"1", 1,
		"Pieces", "1",
		"", "pd168037725.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[301] = new Element(
		301, "assets/thumb/winch tight small media.jpg",
		200, 217,
		"DZC-4080-6", "Full frame Winch-Tite System for Cheif frame machine",
		"", "",
		"2650", "0",
		"1", 1,
		"Pieces", "0",
		"", "pd1131408085.htm",
		"", 1,
		"002", "0",
		 0)
	
		Entry[302] = new Element(
		302, "assets/thumb/0451big.jpg",
		120, 162,
		"M0451", "Mo Clamp #0451 FLASH CLAMP 3T",
		"", "MO CLAMP",
		"190.18", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-709140582.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[303] = new Element(
		303, "assets/thumb/0452big.jpg",
		120, 123,
		"M0452", "MO CLAMP #0452 FLASH CLAMP 7T",
		"", "MO CLAMP",
		"260.32", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-933726376.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[304] = new Element(
		304, "assets/thumb/0551%20big.gif",
		67, 190,
		"M0551", "MO CLAMP #0551 T.O. CLAMP (TIGHT OPENING)",
		"", "MO CLAMP",
		"207.08", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1585935034.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[305] = new Element(
		305, "assets/thumb/1850big.jpg",
		120, 86,
		"M1850", "MO CLAMP #1850 IN LINE SLIDER",
		"", "MO CLAMP",
		"117.89", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd754355428.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[306] = new Element(
		306, "assets/thumb/1370big.jpg",
		120, 147,
		"M1370", "MO CLAMP #1370 CURVED CLAMP",
		"", "MO CLAMP",
		"324.83", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-612273360.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[307] = new Element(
		307, "assets/thumb/2460big.jpg",
		120, 130,
		"M2460", "MO CLAMP #2460 RADIATOR CORE SUPPORT PULLER",
		"", "MO CLAMP",
		"142.01", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd251022558.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[308] = new Element(
		308, "assets/thumb/2460big.jpg",
		120, 130,
		"M2460-1", "MO CLAMP #2460 RADIATOR CORE SUPPORT PULLER",
		"", "MO CLAMP",
		"142.01", "0",
		"1", 1,
		"Pieces", "3",
		"", "pd-298994116.htm",
		"", 1,
		"005", "0",
		 0)
	
		Entry[309] = new Element(
		309, "assets/thumb/4028big.jpg",
		120, 80,
		"M4028", "MO CLAMP #4028 BMW HOLD DOWN (SET OF 4)",
		"For holding BMW vehicles with oblong jack tube holes", "MO CLAMP",
		"946.57", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-761071926.htm",
		"", 1,
		"003", "0",
		 0)
	
		Entry[310] = new Element(
		310, "assets/thumb/4049big.jpg",
		120, 59,
		"M4049", "#4049 Frame Wrench",
		"", "MO CLAMP",
		"60.41", "0",
		"1", 1,
		"Pieces", "10",
		"", "pd1676714504.htm",
		"", 1,
		"012", "0",
		 0)
	
		Entry[311] = new Element(
		311, "assets/thumb/4075big.jpg",
		120, 153,
		"M4075", "MO CLAMP #4075 UNICLAW SET OF 4",
		"", "MO CLAMP",
		"2828.38", "0",
		"1", 1,
		"Pieces", "1",
		"", "pd-1802406026.htm",
		"", 1,
		"003", "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();
			};
		};