<html>

<head>

<style type="text/css">



.left {



color: #000000;



font-size: 8pt;



font-family: Trebuchet MS;



}





.leader {



color: #000000;



font-size: 10pt;



font-family: Trebuchet MS;



}





.text {



color: #000000;



font-size: 10pt;



font-family: arial;



}



.letext {



color: #000000;



font-size: 10pt;



font-family: arial;



}



.title {



color: #000000;



font-size: 12pt;



font-family: arial;



}



.smHeadline {



color: #000000;



font-size: 12pt;



font-family: arial;



}



</style>

<SCRIPT>

function DynaWin(url, h, w, l, t) {

poph = + h + 25

popw = + w + 25

disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");

content = '<HTML>';

content += '<TITLE>Cignys</TITLE>';

content += '</HEAD>';

content += '<BODY bgcolor="#A63D41" link="#FFFFFF" Vlink="#FFFFFF" onBlur="self.close()">';

content += '<P ALIGN="CENTER"><img src="' + url + '" height="' + h + '" width="' + w + '"></P>';

content += '<H3 ALIGN="CENTER"><A HREF="#" onClick="self.close()">Close Window</A></H3>';

content += '</BODY></HTML>';

disp.document.write(content);

disp.document.close();

}

</SCRIPT>

<script language="javascript" type="text/javascript">

<!--



/*

Image w/ description tooltip- By Dynamic Web Coding (www.dyn-web.com)

Copyright 2002 by Sharon Paine

Visit http://www.dynamicdrive.com for this script

*/



/* IMPORTANT: Put script after tooltip div or 

	 put tooltip div just before </BODY>. */



var dom = (document.getElementById) ? true : false;

var ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false;

var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;

var ns4 = (document.layers && !dom) ? true : false;

var ie4 = (document.all && !dom) ? true : false;

var nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false;



// resize fix for ns4

var origWidth, origHeight;

if (ns4) {

	origWidth = window.innerWidth; origHeight = window.innerHeight;

	window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }

}



// avoid error of passing event object in older browsers

if (nodyn) { event = "nope" }



///////////////////////  CUSTOMIZE HERE   ////////////////////

// settings for tooltip 

// Do you want tip to move when mouse moves over link?

var tipFollowMouse= true;	

// Be sure to set tipWidth wide enough for widest image

var tipWidth= 200;

var offX= 20;	// how far from mouse to show tip

var offY= 12; 

var tipFontFamily= "Verdana, arial, helvetica, sans-serif";

var tipFontSize= "8pt";

// set default text color and background color for tooltip here

// individual tooltips can have their own (set in messages arrays)

// but don't have to

var tipFontColor= "#000000";

var tipBgColor= "#DDECFF"; 

var tipBorderColor= "#000080";

var tipBorderWidth= 3;

var tipBorderStyle= "ridge";

var tipPadding= 4;



// tooltip content goes here (image, description, optional bgColor, optional textcolor)

var messages = new Array();

// multi-dimensional arrays containing: 

// image and text for tooltip

// optional: bgColor and color to be sent to tooltip

messages[0] = new Array('/images/1.jpg','High Speed/Low Profile Mobilizer',"#FFFFFF");

messages[1] = new Array('/images/2.jpg','High Speed ISO Mobilizer',"#FFFFFF");

messages[2] = new Array('/images/3.jpg','S-280 High Speed Mobilizer',"#FFFFFF");

messages[3] = new Array('/images/4.jpg','Trailers & Mobility Platforms',"#FFFFFF");

messages[4] = new Array('/images/5.jpg','Running Gear',"#FFFFFF");

messages[5] = new Array('/images/6.jpg','Axles',"#FFFFFF");

messages[6] = new Array('/images/7.jpg','Safety Jacks ',"#FFFFFF");

messages[7] = new Array('/images/8.jpg','Shelter Jacks',"#FFFFFF");

messages[8] = new Array('/images/9.jpg','Bridge Crane Kits',"#FFFFFF");

messages[9] = new Array('/images/10.jpg','Hoist Trolleys',"#FFFFFF");

messages[10] = new Array('/images/11.jpg','Monorail Trolleys',"#FFFFFF");

messages[11] = new Array('/images/12.jpg','Power & Free Trolley',"#FFFFFF");

messages[12] = new Array('/images/roller2.jpg','Roller Turn Rollers',"#FFFFFF");

messages[13] = new Array('/images/mus.jpg','Mobilizer Museum',"#FFFFFF");

messages[14] = new Array('/images/caster.jpg','Caster Jacks',"#FFFFFF");

messages[15] = new Array('/images/levels.jpg','Leveling Jacks',"#FFFFFF");

messages[16] = new Array('/images/16.jpg','Barrels',"#FFFFFF");

messages[17] = new Array('/images/17.jpg','Screws',"#FFFFFF");

messages[18] = new Array('/images/18.jpg','Liners',"#FFFFFF");

messages[19] = new Array('/images/19.jpg','Shafts',"#FFFFFF");

messages[20] = new Array('/images/21.jpg','Deep Drawn Stampings',"#FFFFFF");

messages[21] = new Array('/images/22.jpg','CMM Staging Fixtures',"#FFFFFF");

messages[22] = new Array('/images/22.jpg','CNC Machine Fixtures',"#FFFFFF");

messages[23] = new Array('/images/20.jpg','Reverse Engineering',"#FFFFFF");

messages[24] = new Array('/images/23.jpg','Leak Test Machines',"#FFFFFF");

messages[25] = new Array('/images/24.jpg','Assembly Machines',"#FFFFFF");

messages[26] = new Array('/images/25.jpg','Upset/Endform Machines',"#FFFFFF");

messages[27] = new Array('/images/26.jpg','Custom Design',"#FFFFFF");

messages[28] = new Array('/images/27.jpg','Industrial Tractors & Trailers',"#FFFFFF");

messages[29] = new Array('/images/whlside.jpg','Wheels',"#FFFFFF");

messages[30] = new Array('/images/a380.jpg','Cochran Airport Systems',"#FFFFFF");



////////////////////  END OF CUSTOMIZATION AREA  ///////////////////



// preload images that are to appear in tooltip

// from arrays above

if (document.images) {

	var theImgs = new Array();

	for (var i=0; i<messages.length; i++) {

  	theImgs[i] = new Image();

		theImgs[i].src = messages[i][0];

  }

}



// to layout image and text, 2-row table, image centered in top cell

// these go in var tip in doTooltip function

// startStr goes before image, midStr goes between image and text

var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="90%"><img src="';

var midStr = '" border="0"></td></tr><tr><td valign="top">';

var endStr = '</td></tr></table>';



////////////////////////////////////////////////////////////

//  initTip	- initialization for tooltip.

//		Global variables for tooltip. 

//		Set styles for all but ns4. 

//		Set up mousemove capture if tipFollowMouse set true.

////////////////////////////////////////////////////////////

var tooltip, tipcss;

function initTip() {

	if (nodyn) return;

	tooltip = (ns4)? document.tipDiv.document: (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null;

	tipcss = (ns4)? document.tipDiv: tooltip.style;

	if (ie4||ie5||ns5) {	// ns4 would lose all this on rewrites

		tipcss.width = tipWidth+"px";

		tipcss.fontFamily = tipFontFamily;

		tipcss.fontSize = tipFontSize;

		tipcss.color = tipFontColor;

		tipcss.backgroundColor = tipBgColor;

		tipcss.borderColor = tipBorderColor;

		tipcss.borderWidth = tipBorderWidth+"px";

		tipcss.padding = tipPadding+"px";

		tipcss.borderStyle = tipBorderStyle;

	}

	if (tooltip&&tipFollowMouse) {

		if (ns4) document.captureEvents(Event.MOUSEMOVE);

		document.onmousemove = trackMouse;

	}

}



window.onload = initTip;



var t1,t2;	// for setTimeouts

var tipOn = false;	// check if over tooltip link

function doTooltip(evt,num) {

	if (!tooltip) return;

	if (t1) clearTimeout(t1);	if (t2) clearTimeout(t2);

	tipOn = true;

	// set colors if included in messages array

	if (messages[num][2])	var curBgColor = messages[num][2];

	else curBgColor = tipBgColor;

	if (messages[num][3])	var curFontColor = messages[num][3];

	else curFontColor = tipFontColor;

	if (ns4) {

		var tip = '<table bgcolor="' + tipBorderColor + '" width="' + tipWidth + '" cellspacing="0" cellpadding="' + tipBorderWidth + '" border="0"><tr><td><table bgcolor="' + curBgColor + '" width="90%" cellspacing="0" cellpadding="' + tipPadding + '" border="0"><tr><td>'+ startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr + '</td></tr></table></td></tr></table>';

		tooltip.write(tip);

		tooltip.close();

	} else if (ie4||ie5||ns5) {

		var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr;

		tipcss.backgroundColor = curBgColor;

	 	tooltip.innerHTML = tip;

	}

	if (!tipFollowMouse) positionTip(evt);

	else t1=setTimeout("tipcss.visibility='visible'",100);

}



var mouseX, mouseY;

function trackMouse(evt) {

	mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft;

	mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop;

	if (tipOn) positionTip(evt);

}



function positionTip(evt) {

	if (!tipFollowMouse) {

		mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft;

		mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop;

	}

	// tooltip width and height

	var tpWd = (ns4)? tooltip.width: (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth;

	var tpHt = (ns4)? tooltip.height: (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight;

	// document area in view (subtract scrollbar width for ns)

	var winWd = (ns4||ns5)? window.innerWidth-20+window.pageXOffset: document.body.clientWidth+document.body.scrollLeft;

	var winHt = (ns4||ns5)? window.innerHeight-20+window.pageYOffset: document.body.clientHeight+document.body.scrollTop;

	// check mouse position against tip and window dimensions

	// and position the tooltip 

	if ((mouseX+offX+tpWd)>winWd) 

		tipcss.left = (ns4)? mouseX-(tpWd+offX): mouseX-(tpWd+offX)+"px";

	else tipcss.left = (ns4)? mouseX+offX: mouseX+offX+"px";

	if ((mouseY+offY+tpHt)>winHt) 

		tipcss.top = (ns4)? winHt-(tpHt+offY): winHt-(tpHt+offY)+"px";

	else tipcss.top = (ns4)? mouseY+offY: mouseY+offY+"px";

	if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100);

}



function hideTip() {

	if (!tooltip) return;

	t2=setTimeout("tipcss.visibility='hidden'",100);

	tipOn = false;

}



//-->

</script>

<link href="css/main.css" type="text/css" rel="stylesheet">

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<meta name="description" content="Multifaceted &amp; Multifunctional Manufacturing">

<meta name="keywords" content="CIGNYS, Material Handling, Ground support, Military Products, Special Machines, Prototype Stamping, Advanced Manufacturing, Safety Jacks, Shelter Jacks, Bridge Crane Kits, Roller Trolleys, ISO Mobilizer, Military Mobilizer">



<title>CIGNYS Hoist Trolleys with Safe-T-Lug, &quot;All-American&quot; Hoist Trolley Assembly</title>



<script type="text/javascript" src="scripts/nav.js"></script>

<link href="includes/style.css" rel="stylesheet" type="text/css" />

<style type="text/css">

<!--

.style1 {background-color: #FFFFFF}

.style2 {color: #0099FF}

.style3 {font-size: 11px}

a {

	font-family: "Trebuchet MS";

	font-size: 10px;

	color: #0000FF;

}

a:link {

	text-decoration: none;

}

a:visited {

	text-decoration: none;

	color: #220108;

}

a:hover {

	text-decoration: underline;

	color: #0066CC;

}

a:active {

	text-decoration: none;

}

.style10 {font-family: Arial, Helvetica, sans-serif; font-size: 11px; }

.style11 {font-family: Verdana, Arial, Helvetica, sans-serif}

.style13 {font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #000000; }

.style14 {color: #000000}

.style15 {font-size: 13px}

.style17 {font-size: 13px; font-family: Arial, Helvetica, sans-serif; }

.style18 {font-family: Arial, Helvetica, sans-serif}

.style19 {font-size: 16px; }

.style21 {font-family: Arial, Helvetica, sans-serif; font-size: 18px; }

.style22 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; }

-->

</style>

</head>

<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0">



<table width="750" border="0" align="left" cellpadding="1" cellspacing="0">

<tr>

<td colspan="2" height="108"><a href="index.htm"><img src="images/header.jpg" border="0" width="750" height="113"></a></td>

</tr>



<tr>



<td colspan="2" height="25" bgcolor="#EC1D24">



<!-- Menu Here -->





<div id="navd">
<table  border="0" align="center" cellpadding="0" cellspacing="5">
	<tr>
          <td><a  href="#" onmouseover="dropdownmenu(this, event, menu1, '150px')" onmouseout="delayhidemenu()">Military Mobilizers</a></td>
          <td width="20px;">&nbsp;</td>
          <td><a  href="#" onmouseover="return dropdownmenu(this, event, menu2, '200px')" onmouseout="delayhidemenu()">Ground Support Equipment</a></td>
          <td width="20px;">&nbsp;</td>
          <td><a  href="#" onmouseover="dropdownmenu(this, event, menu3, '150px')" onmouseout="delayhidemenu()">Jacks</a></td>
          <td width="20px;">&nbsp;</td>
          <td><a  href="#" onmouseover="dropdownmenu(this, event, menu4, '150px')" onmouseout="delayhidemenu()">Conveyer Components</a></td>
          <td width="20px;">&nbsp;</td>
          <td><a  href="#" onmouseover="dropdownmenu(this, event, menu5, '150px')" onmouseout="delayhidemenu()">Extruder Components</a></td>
          <td width="20px;">&nbsp;</td>
          <td><a  href="#" onmouseover="dropdownmenu(this, event, menu6, '150px')" onmouseout="delayhidemenu()">Prototype Stamping&amp; Tooling</a></td>
  	</tr>
</table>
</div>

<!-- End of Menus -->



</td>

</tr>

<tr>

<td colspan="2" height="18"><img src="images/menu_shadow.jpg" width="750" height="18"></td>

</tr>



<tr>

<td width="185" height="1458" rowspan="10" valign="top" bgcolor="#A1A2A4">



<!-- Left Column --> <noindex follow>

<table width="185" border="0" align="left" cellpadding="0" cellspacing="0" bgcolor="#A1A2A4">

<tr>



		<td width="1" bgcolor="#A0A2A3">

		</td>

		<td width="184" bgcolor="#A0A2A3" valign="top">



		<img src="images/shmenu.gif" width="176" height="2"><br>

		<b><font face="Arial" size="2" color="#FFFFFF"><a href="index.htm">Home</a><br>

		</font></b><img src="images/shmenu.gif" width="176" height="2"><br>



		<b><font face="Arial" size="2" color="#FFFFFF"><a href="about.htm">About Us</a><br>

		</font></b><img src="images/shmenu.gif" width="176" height="2"><br>

	

		<b><font face="Arial" size="2" color="#FFFFFF"><a href="contact.htm">Contact Information</a><br>



		</font></b><img src="images/shmenu.gif" width="176" height="2"><br><br>

	

		<font face="Trebuchet MS" size="2" color="#FFFFFF">Military Mobilizers</font><font size="1" face="Trebuchet MS"><br>

        <a href="HighSpeedLowProfile.htm" onMouseOver="doTooltip(event,0)" onMouseOut="hideTip()"> High Speed/Low Profile Mobilizer</a><br>

        <a href="HighSpeedISO.htm" onMouseOver="doTooltip(event,1)" onMouseOut="hideTip()"> High Speed ISO Mobilizer </a> <br>

        <a href="mobilizer_museum.htm" onMouseOver="doTooltip(event,13)" onMouseOut="hideTip()"> Mobilizer Museum</a> <br>

        <a href="S280Shelter.htm" onMouseOver="doTooltip(event,2)" onMouseOut="hideTip()"> S-280 High Speed Mobilizer</a> <br>

        <br>

        <font face="Trebuchet MS" size="2" color="#FFFFFF"> Ground Support Equipment</font><font size="1" face="Trebuchet MS"><br>

        <a href="Axles.htm" onMouseOver="doTooltip(event,5)" onMouseOut="hideTip()"> Axles</a> <br>

        <a href="IndustrialTractorsTrailers.htm" onMouseOver="doTooltip(event,28)" onMouseOut="hideTip()"> </a><a href="CochranAirportSystems.htm" onMouseOver="doTooltip(event,30)" onMouseOut="hideTip()">Cochran Airport Systems</a> <a href="IndustrialTractorsTrailers.htm" onMouseOver="doTooltip(event,28)" onMouseOut="hideTip()"><br>

Industrial Tractors &amp; Trailers</a> <br>

<a href="RunningGear.htm" onMouseOver="doTooltip(event,4)" onMouseOut="hideTip()"> Running Gear</a> <br>

<a href="Trailers.htm" onMouseOver="doTooltip(event,3)" onMouseOut="hideTip()"> Trailers &amp; Mobility Platforms</a> <br>

<font face="Trebuchet MS" size="2" color="#FFFFFF"><br>

Jacks</font><font size="1" face="Trebuchet MS"><br>

<a href="CasterJacks.htm" onMouseOver="doTooltip(event,14)" onMouseOut="hideTip()"> Caster Jacks</a> <br>

<a href="Jacks.htm" onMouseOver="doTooltip(event,15)" onMouseOut="hideTip()"> Leveling Jacks</a> <br>

<a href="SafetyJacks.htm" onMouseOver="doTooltip(event,6)" onMouseOut="hideTip()"> Safety Jacks</a> <br>

<a href="ShelterJacks.htm" onMouseOver="doTooltip(event,7)" onMouseOut="hideTip()"> Shelter Jacks</a> <br>

<font face="Trebuchet MS" size="2" color="#FFFFFF"><br>

Conveyor Components</font><font face="Trebuchet MS" size="1"><br>

<a href="BridgeCraneKits.htm" onMouseOver="doTooltip(event,8)" onMouseOut="hideTip()"> Bridge Crane Kits</a> <br>

<a href="HoistTrolleys.htm" onMouseOver="doTooltip(event,9)" onMouseOut="hideTip()"> Hoist Trolleys</a> <br>

<a href="MonorailTrolleys.htm" onMouseOver="doTooltip(event,10)" onMouseOut="hideTip()"> Monorail Trolleys</a> <br>

<a href="PowerFreeTrolleys.htm" onMouseOver="doTooltip(event,11)" onMouseOut="hideTip()"> Power &amp; Free Trolley</a> <br>

<a href="RollerTurnRollers.htm" onMouseOver="doTooltip(event,12)" onMouseOut="hideTip()"> Roller Turn Rollers</a> <br>

<a href="Wheels.htm" onMouseOver="doTooltip(event,29)" onMouseOut="hideTip()"> Wheels</a> <br>

<font face="Trebuchet MS" size="2" color="#FFFFFF"><br>

Extruder Components</font><font face="Trebuchet MS" size="1"><br>

<a href="ExtruderBarrels.htm" onMouseOver="doTooltip(event,16)" onMouseOut="hideTip()"> Barrels</a> <br>

<a href="ExtruderLiners.htm" onMouseOver="doTooltip(event,18)" onMouseOut="hideTip()"> Liners</a> <br>

<a href="ExtruderScrews.htm" onMouseOver="doTooltip(event,17)" onMouseOut="hideTip()"> Screws</a> <br>

<a href="ExtruderShafts.htm" onMouseOver="doTooltip(event,19)" onMouseOut="hideTip()"> Shafts</a> <br>

<font face="Trebuchet MS" size="2" color="#FFFFFF"><br>

Prototype Stamping &amp; Tooling</font><font face="Trebuchet MS" size="1"><br>

<a href="CMMStaging.htm" onMouseOver="doTooltip(event,21)" onMouseOut="hideTip()"> CMM Staging Fixtures</a> <br>

<a href="CNCMachine.htm" onMouseOver="doTooltip(event,22)" onMouseOut="hideTip()"> CNC Machine Fixtures</a> <br>

<a href="DeepDrawn.htm" onMouseOver="doTooltip(event,20)" onMouseOut="hideTip()"> Deep Drawn Stampings</a> <br>

<a href="RevEng.htm" onMouseOver="doTooltip(event,23)" onMouseOut="hideTip()"> Reverse Engineering</a> </font><font face="Trebuchet MS" size="1"> </font></font></font></font></font></font></td>





</tr>

</table>



<!-- End of Left Column --> </noindex>



</td>

<td width="561" align="center" valign="top">



<!-- Main COntent Cell -->





<table width="561"  border="0" align="center" cellpadding="3" cellspacing="3" class="MainText" id="table7">

      <tr> 

<td colspan="2" class="style19"><span class="style18"><b>Hoist Trolleys </b></span>  <span class="style18"></span></td>

  

        </tr>

         <tr>

           <td width="549" valign="top" style="font-family: Arial, Helvetica, sans-serif"><p align="justify" class="style15">CIGNYS is the largest OEM of American built hoist trolleys in the world.  Some U.S. distributors have opted to have their equipment manufactured overseas, which has resulted in inferior products.  CIGNYS maintains its policy to provide the highest quality, competitively priced American built hoist trolley on the market today.

           </p>

			<p align="justify" class="style15">All hoist trolleys are adjustable to fit a variety of beam flange widths. Furthermore, the solid cast iron wheels combine a sealed precision bearing with a smooth machined outer surface to greatly increase rolling efficiency, improve reliability and eliminate maintenance. The &quot;Safe-T-Lug&quot; side plates provide an extra margin of safety by extending beyond the wheels and acting as bumpers. They also distribute the load equally to all four wheels. Optional &quot;spark resistant&quot; trolleys are available, featuring cast bronze wheels and aluminum bumpers tabs.</p>

           </td>



         </tr>

         <tr>

           <td width="549" valign="top" style="font-family: Arial, Helvetica, sans-serif">

               <ul>

                 <li class="style3"><span class="style15"><strong>Strength -</strong> Load capacities range from 1/8 ton through 5 tons</span></li>

                 <li class="style15"><strong>Durability -</strong> Steel side plates and rugged cast wheels offer long trouble-free service</li>



                 <li class="style15"><strong>Safety -</strong> Wrap around &quot;Safe-T-Lug&quot; side plate feature holds trolley safely on the beam</li>

                 <li class="style15"><strong>Versatility -</strong> Can be used on I-beams and Wide-Flanged beams</li>

                 <li class="style15"><strong>Maintenance Free -</strong> All wheels have sealed precision bearings, no relube necessary</li>



                 <li class="style15"><strong>Easy Assembly Machines and installation -</strong> one person and a single tool</li>

                 <li class="style15"><strong>Replacement Parts -</strong> All components are easily replaced and readily available</li>

             </ul></td>

        </tr>

         <tr>

           <td valign="top" style="font-family: Arial, Helvetica, sans-serif" height="40"><p align="justify"><span class="style11"><br>

                 <span class="style18"><span class="style19"><strong>Safe-T-Lug</strong></span><br>



                 </span></span><span class="style17">Wrap around end plate hoist trolleys for I beams and wide flange beams (universal tread wheels)<font color="#EC1D24">.</font><font color="#EC1D24"></font><font color="#EC1D24"></font></span></p></td>

         </tr>

         

      </table>

		<div align="center">

		  <div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>

		</div>

    </td>

</tr>

<tr>

  <td align="center" valign="top"><p><img src="images/hoisttrolleysdrawing.gif" width="423" height="200"></p>

    <p><img src="images/halftontrolley.JPG" width="220" height="175"> <img src="images/halftontrolleyside.JPG" width="244" height="175"><br>

        <br>

    </p></td>

</tr>

<tr>

  <td height="249" align="center" valign="top"><div align="left">

    <table width="560" border="1" align="center" cellpadding="0" cellspacing="0">

        <tr bgcolor="#CFCFCF">

          <td colspan="19"><span class="style10">Hoist Trolleys</span></td>

        </tr>

        <tr bgcolor="#CFCFCF">

          <td width="32" rowspan="2" align="center"><div align="center"><span class="style10">Cap. (Tons)</span></div></td>

          <td colspan="2" align="center"><div align="center"><span class="style10">Beam</span></div></td>

          <td colspan="3" align="center"><div align="center"><span class="style10">Saginaw Part No.</span></div></td>

          <td colspan="13" align="center"><div align="center"><span class="style10">Dimensions</span></div></td>

        </tr>

        <tr>

          <td width="28" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Size (in.)</span></div></td>

          <td width="32" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Flange<br>

            Width (in.)</span></div></td>

          <td width="32" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Trolley</span></div></td>

          <td width="30" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Wheel</span></div></td>

          <td width="38" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Std.<br>

            Hanger Shaft</span></div></td>

          <td width="33" align="center" bgcolor="#D0D0D0"><div align="center">

            <p class="style10">Min.<br>

              Radius<br> 

              to<br>

              Center<br>

              Line 

              of<br> 

              Beam<br>

              (in.)</p>

            </div></td>

          <td width="18" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">Wt.</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">A</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><span class="style10">B</span></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">C</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">D</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">E*</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">F*</span></div></td>

          <td width="21" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">G*</span></div></td>

          <td width="15" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">H</span></div></td>

          <td width="28" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">J Dia.</span></div></td>

          <td width="22" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">K Rad.</span></div></td>

          <td width="27" align="center" bgcolor="#D0D0D0"><div align="center"><span class="style10">P</span></div></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">300 lb.</span></td>

          <td align="center" nowrap><span class="style10">3</span></td>

          <td align="center"><span class="style10">2.33</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/42006.pdf" target="_blank"><u>42006</u></a></span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51455-CAT.gif" target="_blank"><u>51455</u></a></span></td>

          <td align="center" nowrap><span class="style10">8147</span></td>

          <td align="center" nowrap><span class="style10">18</span></td>

          <td align="right" nowrap><span class="style10">6</span></td>

          <td align="right" nowrap><span class="style10">4.5</span></td>

          <td align="right" nowrap><span class="style10">4.43</span></td>

          <td align="right" nowrap><span class="style10">2.75</span></td>

          <td align="right" nowrap><span class="style10">.68</span></td>

          <td align="right" nowrap><span class="style10">.94</span></td>

          <td align="right" nowrap><span class="style10">1.50</span></td>

          <td align="right" nowrap><span class="style10">3.00</span></td>

          <td align="right" nowrap><span class="style10">.18</span></td>

          <td align="right" nowrap><span class="style10">.75D</span></td>

          <td align="right" nowrap><span class="style10">.75R</span></td>

          <td align="right" nowrap><span class="style10">8.62</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">300 lb.</span></td>

          <td align="center" nowrap><span class="style10">3-10</span></td>

          <td align="center"><span class="style10">2.33-4.66</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/42008.pdf" target="_blank"><u>42008</u></a></span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51455-CAT.gif" target="_blank"><u>51455</u></a></span></td>

          <td align="center" nowrap><span class="style10">8920</span></td>

          <td align="center" nowrap><span class="style10">18</span></td>

          <td align="right" nowrap><span class="style10">7.7</span></td>

          <td align="right" nowrap><span class="style10">4.5</span></td>

          <td align="right" nowrap><span class="style10">4.43</span></td>

          <td align="right" nowrap><span class="style10">2.75</span></td>

          <td align="right" nowrap><span class="style10">.68</span></td>

          <td align="right" nowrap><span class="style10">1.00</span></td>

          <td align="right" nowrap><span class="style10">1.50</span></td>

          <td align="right" nowrap><span class="style10">3.00</span></td>

          <td align="right" nowrap><span class="style10">.18</span></td>

          <td align="right" nowrap><span class="style10">.75D</span></td>

          <td align="right" nowrap><span class="style10">.75R</span></td>

          <td align="right" nowrap><span class="style10">8.62</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">1/2</span></td>

          <td align="center" nowrap><span class="style10">4-10</span></td>

          <td align="center"><span class="style10">2.66-4.66</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/42010.pdf" target="_blank"><u>42010</u></a></span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51342-CAT.gif" target="_blank"><u>51342</u></a></span></td>

          <td align="center" nowrap><span class="style10">7927-1</span></td>

          <td align="center" nowrap><span class="style10">24</span></td>

          <td align="right" nowrap><span class="style10">19</span></td>

          <td align="right" nowrap><span class="style10">4.5</span></td>

          <td align="right" nowrap><span class="style10">6.00</span></td>

          <td align="right" nowrap><span class="style10">4.12</span></td>

          <td align="right" nowrap><span class="style10">.75</span></td>

          <td align="right" nowrap><span class="style10">.94</span></td>

          <td align="right" nowrap><span class="style10">1.87</span></td>

          <td align="right" nowrap><span class="style10">3.31</span></td>

          <td align="right" nowrap><span class="style10">.31</span></td>

          <td align="right" nowrap><span class="style10">.87D</span></td>

          <td align="right" nowrap><span class="style10">.50R</span></td>

          <td align="right" nowrap><span class="style10">10.00</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">1</span></td>

          <td align="center" nowrap><span class="style10">5-12</span></td>

          <td align="center"><span class="style10">3.00-5.25</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/42005.pdf" target="_blank"><u>42005</u></a></span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51346-CAT.gif" target="_blank"><u>51346</u></a></span></td>

          <td align="center" nowrap><span class="style10">7928-1</span></td>

          <td align="center" nowrap><span class="style10">36</span></td>

          <td align="right" nowrap><span class="style10">29</span></td>

          <td align="right" nowrap><span class="style10">5.6</span></td>

          <td align="right" nowrap><span class="style10">6.87</span></td>

          <td align="right" nowrap><span class="style10">5.00</span></td>

          <td align="right" nowrap><span class="style10">.87</span></td>

          <td align="right" nowrap><span class="style10">1.18</span></td>

          <td align="right" nowrap><span class="style10">2.18</span></td>

          <td align="right" nowrap><span class="style10">4.12</span></td>

          <td align="right" nowrap><span class="style10">.37</span></td>

          <td align="right" nowrap><span class="style10">1.12D</span></td>

          <td align="right" nowrap><span class="style10">.62R</span></td>

          <td align="right" nowrap><span class="style10">12.62</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">2</span></td>

          <td align="center" nowrap><span class="style10">6-18</span></td>

          <td align="center"><span class="style10">3.33-6.00</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/42000.pdf" target="_blank"><u>42000</u></a></span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51347-CAT.gif" target="_blank"><u>51347</u></a></span></td>

          <td align="center" nowrap><span class="style10">7929-1</span></td>

          <td align="center" nowrap><span class="style10">48</span></td>

          <td align="right" nowrap><span class="style10">41</span></td>

          <td align="right" nowrap><span class="style10">6.5</span></td>

          <td align="right" nowrap><span class="style10">7.50</span></td>

          <td align="right" nowrap><span class="style10">5.62</span></td>

          <td align="right" nowrap><span class="style10">.87</span></td>

          <td align="right" nowrap><span class="style10">1.18</span></td>

          <td align="right" nowrap><span class="style10">2.25</span></td>

          <td align="right" nowrap><span class="style10">4.43</span></td>

          <td align="right" nowrap><span class="style10">.37</span></td>

          <td align="right" nowrap><span class="style10">1.25D</span></td>

          <td align="right" nowrap><span class="style10">.62R</span></td>

          <td align="right" nowrap><span class="style10">14.87</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">3</span></td>

          <td align="center" nowrap><span class="style10">8-24</span></td>

          <td align="center"><span class="style10">4.00-8.00</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51666.pdf" target="_blank"><u>51666</u></a></span></td>

          <td align="center" nowrap><a href="images/47036.pdf" target="_blank"><u>47036</u></a></td>

          <td align="center" nowrap><span class="style10">49591</span></td>

          <td align="center" nowrap><span class="style10">60</span></td>

          <td align="right" nowrap><span class="style10">76</span></td>

          <td align="right" nowrap><span class="style10">6.38</span></td>

          <td align="right" nowrap><span class="style10">8.50</span></td>

          <td align="right" nowrap><span class="style10">5.43</span></td>

          <td align="right" nowrap><span class="style10">1.62</span></td>

          <td align="right" nowrap><span class="style10">1.62</span></td>

          <td align="right" nowrap><span class="style10">2.59</span></td>

          <td align="right" nowrap><span class="style10">5.38</span></td>

          <td align="right" nowrap><span class="style10">.50</span></td>

          <td align="right" nowrap><span class="style10">1.43D</span></td>

          <td align="right" nowrap><span class="style10">.50R</span></td>

          <td align="right" nowrap><span class="style10">14.12</span></td>

        </tr>

        <tr>

          <td align="center" nowrap><span class="style10">5</span></td>

          <td align="center" nowrap><span class="style10">10-24</span></td>

          <td align="center"><span class="style10">4.66-8.00</span></td>

          <td align="center" nowrap><span class="style10"><a href="images/51667.pdf" target="_blank"><u>51667</u></a></span></td>

          <td align="center" nowrap><a href="images/47039.pdf" target="_blank"><u>47039</u></a></td>

          <td align="center" nowrap><span class="style10">49592</span></td>

          <td align="center" nowrap><span class="style10">60</span></td>

          <td align="right" nowrap><span class="style10">113</span></td>

          <td align="right" nowrap><span class="style10">6.75</span></td>

          <td align="right" nowrap><span class="style10">9.75</span></td>

          <td align="right" nowrap><span class="style10">5.75</span></td>

          <td align="right" nowrap><span class="style10">2.25</span></td>

          <td align="right" nowrap><span class="style10">1.62</span></td>

          <td align="right" nowrap><span class="style10">2.87</span></td>

          <td align="right" nowrap><span class="style10">6.62</span></td>

          <td align="right" nowrap><span class="style10">.62</span></td>

          <td align="right" nowrap><span class="style10">1.43D</span></td>

          <td align="right" nowrap><span class="style10">.56R</span></td>

          <td align="right" nowrap><span class="style10">15.44</span></td>

        </tr>

        <tr>

          <td colspan="19"><span class="style10">*Dimensions are for smallest size beams</span></td>

        </tr>

      </table>

  </div></td>

</tr>

<tr>

  <td align="center" valign="top"><div align="center"><b><br>

        <span class="style21">The "ALL-AMERICAN" Hoist Trolley Assembly</span></b>

        <br>

  </div></td>

</tr>

<tr>

  <td align="center" valign="top"><div align="justify"><span class="style17">CIGNYS is the OEM of this superior hoist trolley. Other OEMs have opted to have their equipment manufactured overseas in an attempt to &ldquo;save a buck&rdquo;. CIGNYS maintains its firm stand to provide our customers with a competitively priced, high-quality product manufactured in America by Americans. </span></div></td>

</tr>

<tr>

  <td align="center" valign="top"><p><img src="images/49701-sch.jpg" width="550" height="206"></p>

    <p><img src="images/hoisttrolley.jpg" width="145" height="104"><br>

    </p></td>

</tr>

<tr>

  <td align="center" valign="top"><div align="left"></div>

    <table width="500" border="1" cellpadding="1" cellspacing="0">

      <tr align="center" valign="bottom" bgcolor="#CFCFCF">

        <th colspan="4" scope="col"><div align="left" class="style15"><font face="Arial">Dimensional Chart</font></div></th>

        <th colspan="11" scope="col"><div align="left" class="style15"><font face="Arial">1-ton through 5-ton Models are manufactured with two hanger shafts for added stability.</font></div></th>

        </tr>

      <tr align="center" valign="bottom" bgcolor="#CFCFCF">

        <th width="45" scope="col"><span class="style13" style="font-weight: 400">Capacity (Tons)</span></th>

        <th width="35" scope="col"><span class="style13" style="font-weight: 400">Beam Size &nbsp;Inches</span></th>

        <th width="69" scope="col"><span class="style13"><span style="font-weight: 400">Beam Flange &nbsp;Width (In.)</span></span></th>

        <th width="37" scope="col"><span class="style13" style="font-weight: 400">Hoist Trolley Number</span></th>

        <th width="51" scope="col"><p class="style14"><span class="style10" style="font-weight: 400">Min. Radius Centerline of Beam (In.)</span></p>

          </th>

        <th width="33" scope="col"><span class="style13" style="font-weight: 400">Weight</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">A</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">B</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">C</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">D</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">E*</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">G*</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">H</span></th>

        <th width="21" scope="col"><span class="style13" style="font-weight: 400">J</span></th>

        <th width="27" scope="col"><span class="style13" style="font-weight: 400">K</span></th>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">1/4</span></td>

        <td nowrap><span class="style10">4&quot;S<br>

  8&quot;WF</span></td>

        <td nowrap><span class="style10">2.660 to 8.000</span></td>

        <td nowrap><span class="style10"><a href="images/49700.pdf" target="_blank" class="style1"><u>49699</u></a></span></td>

        <td nowrap><span class="style10">36</span></td>

        <td nowrap><span class="style10">18</span></td>

        <td nowrap><span class="style10">4.13</span></td>

        <td nowrap><span class="style10">5.25</span></td>

        <td nowrap><p class="style10">2.75</p></td>

        <td nowrap><span class="style10">1.63</span></td>

        <td nowrap><span class="style10">1.03</span></td>

        <td nowrap><span class="style10">3.94</span></td>

        <td nowrap><span class="style10">0.25</span></td>

        <td nowrap><span class="style10">0.62</span></td>

        <td nowrap><span class="style10">12.00</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">1/2</span></td>

        <td nowrap><span class="style10">4&quot;S<br>

8&quot;WF</span></td>

        <td nowrap><span class="style10">2.660 to 8.000</span></td>

        <td nowrap><span class="style10"><a href="images/49700.pdf" target="_blank" class="style1"><u>49700</u></a></span></td>

        <td nowrap><span class="style10">36</span></td>

        <td nowrap><span class="style10">18</span></td>

        <td nowrap><span class="style10">4.13</span></td>

        <td nowrap><span class="style10">5.25</span></td>

        <td nowrap><p class="style10">2.75</p>

          </td>

        <td nowrap><span class="style10">1.63</span></td>

        <td nowrap><span class="style10">1.03</span></td>

        <td nowrap><span class="style10">3.94</span></td>

        <td nowrap><span class="style10">0.25</span></td>

        <td nowrap><span class="style10">0.62</span></td>

        <td nowrap><span class="style10">12.00</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">1 </span></td>

        <td nowrap><span class="style10">5&quot;S<br>

8&quot;WF</span></td>

        <td nowrap><span class="style10">3.000 to 8.000</span></td>

        <td nowrap><span class="style10"><u><a href="images/49701.pdf" target="_blank">49701</a></u></span></td>

        <td nowrap><span class="style10">48</span></td>

        <td nowrap><span class="style10">26</span></td>

        <td nowrap><span class="style10">4.56</span></td>

        <td nowrap><span class="style10">5.25</span></td>

        <td nowrap><span class="style10">3.00</span></td>

        <td nowrap><span class="style10">1.50</span></td>

        <td nowrap><span class="style10">1.47</span></td>

        <td nowrap><span class="style10">4.22</span></td>

        <td nowrap><span class="style10">0.31</span></td>

        <td nowrap><span class="style10">0.62</span></td>

        <td nowrap><span class="style10">11.87</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">2</span></td>

        <td nowrap><span class="style10">6&quot;S<br>

8&quot;WF</span></td>

        <td nowrap><span class="style10">3.330 to 8.000</span></td>

        <td nowrap><span class="style10"><u><a href="images/49702.pdf" target="_blank">49702</a></u></span></td>

        <td nowrap><span class="style10">60</span></td>

        <td nowrap><span class="style10">55</span></td>

        <td nowrap><span class="style10">6.25</span></td>

        <td nowrap><span class="style10">6.62</span></td>

        <td nowrap><span class="style10">4.12</span></td>

        <td nowrap><span class="style10">1.38</span></td>

        <td nowrap><span class="style10">0.88</span></td>

        <td nowrap><span class="style10">4.68</span></td>

        <td nowrap><span class="style10">0.38</span></td>

        <td nowrap><span class="style10">0.75</span></td>

        <td nowrap><span class="style10">12.63</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">3</span></td>

        <td nowrap><span class="style10">8&quot;S<br>

8&quot;WF</span></td>

        <td nowrap><span class="style10">4.000 to 8.000</span></td>

        <td nowrap><span class="style10"><a href="images/49703.pdf" target="_blank"><u>49703</u></a></span></td>

        <td nowrap><span class="style10">60</span></td>

        <td nowrap><span class="style10">67</span></td>

        <td nowrap><span class="style10">6.38</span></td>

        <td nowrap><span class="style10">7.34</span></td>

        <td nowrap><span class="style10">4.25</span></td>

        <td nowrap><span class="style10">1.84</span></td>

        <td nowrap><span class="style10">1.61</span></td>

        <td nowrap><span class="style10">5.36</span></td>

        <td nowrap><span class="style10">0.50</span></td>

        <td nowrap><span class="style10">1.00</span></td>

        <td nowrap><span class="style10">13.38</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td nowrap><span class="style10">5</span></td>

        <td nowrap><span class="style10">10&quot;S<br>

8&quot;WF</span></td>

        <td nowrap><span class="style10">4.660 to 8.000</span></td>

        <td nowrap><span class="style10"><a href="images/49705.pdf" target="_blank" class="style2"><u>49705</u></a></span></td>

        <td nowrap><span class="style10">60</span></td>

        <td nowrap><span class="style10">106</span></td>

        <td nowrap><span class="style10">6.75</span></td>

        <td nowrap><span class="style10">8.81</span></td>

        <td nowrap><span class="style10">4.94</span></td>

        <td nowrap><span class="style10">2.31</span></td>

        <td nowrap><span class="style10">1.62</span></td>

        <td nowrap><span class="style10">6.65</span></td>

        <td nowrap><span class="style10">0.62</span></td>

        <td nowrap><span class="style10">1.12</span></td>

        <td nowrap><span class="style10">14.75</span></td>

      </tr>

      <tr align="center" valign="middle" bgcolor="#FFFFFF">

        <td colspan="15" nowrap><div align="left"><span style="font-weight: 400"><span class="style17"><span style="font-size: 8pt">* Dimensions are for smallest size beams</span></span></span></div></td>

        </tr>

    </table>

    </td>

</tr>

<tr>

  <td align="center" valign="top"><div align="center"><p>      <br>

        <span class="style22">Authorized distributor for the "ALL-AMERICAN" hoist trolley:</span> </p>

    </div>

    </td>

</tr>

<tr>

  <td align="center" valign="middle"><a href="http://www.hoistandcrane.com/" target="_blank"><img src="images/Logo.jpg" width="300" height="73" border="0" align="middle"></a></td>

</tr>

<tr>

  <td align="center" valign="top"><span class="style18">Tel: 888-464-7811<br>

Fax: 615-255-4379</span></td>

</tr>



<tr>

<td colspan="2">

<img src="images/bottom_shadow.jpg" width="750" height="37"></td>

</tr>

</table>

















</body>

</html>





