<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 Bridge Crane Kits with Side Guide Roller Models and Flanged Wheel Models</title>

<script type="text/javascript" src="includes/nav.js"></script>
<link href="includes/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {font-size: 16px}
.style2 {
	font-size: 13px;
	color: #0033CC;
}
a {
	font-family: "Trebuchet MS";
	font-size: 10px;
	color: #0033CC;
}
a:visited {
	color: #000000;
}
a:active {
	color: #000000;
}
.style3 {color: #0033CC}
.style5 {font-size: 15px}
.style6 {font-size: 13px}
.style7 {font-family: "Trebuchet MS"}
.style8 {font-size: 13px; font-family: "Trebuchet MS"; }
a:link {
	color: #000000;
}
.style9 {color: #000000}
.style10 {font-weight: bold}
a:hover {
	color: #0033CC;
}
-->
</style>
</head>
<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0">

<table width="750" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" height="108"><a href="index.htm"><img src="images/header.jpg" alt="CIGNYS Bridge Crane Kits" width="750" height="113" border="0"></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 bgcolor="#A1A2A4" width="185" valign="top">

<!-- Left Column --> <noindex follow>
<table bgcolor="#A1A2A4" width="185" border="0" cellspacing="0" cellpadding="0">
<tr>

		<td width="5" bgcolor="#A0A2A3">
		</td>
		<td width="180" bgcolor="#A0A2A3" valign="top"><table border="0" align="center" cellpadding="0" cellspacing="0" width="170">
     <tr>
          <td align="center">
               <form method="post" action="/cgi-bin/htsearch" style="padding-bottom:0; margin-bottom:0">
               <fieldset><legend style="font-family:Trebuchet MS; color:#FFFFFF; text-align:left">Search</legend>
               <input type="hidden" name="method" value="all" />
               <input type="hidden" name="format" value="builtin-short" />
               <input type="hidden" name="sort" value="score" />
               <input type="hidden" name="config" value="cignys" />
               <input type="hidden" name="restrict" value="" />
               <input type="hidden" name="exclude" value="" />
               <input type="text" style="width:80%" name="words" value="" />
               <input type="submit" value="Search" />
               </fieldset>
               </form>
     	</td>
     </tr>
</table>



		<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="565" valign="top">

<!-- Main COntent Cell -->


<table class="MainText" width="560"  border="0" align="left" cellpadding="3" cellspacing="3" id="table5">
         <tr>
           <td colspan="2" valign="top" style="font-family: Arial, Helvetica, sans-serif" height="28">
			<b><span class="title">Bridge Crane Kits</span></b></td>
         </tr>
         <tr>

           <td colspan="2" valign="top" style="font-family: Arial, Helvetica, sans-serif"><p align="justify" class="style3">
			<font face="Verdana"><b><span class="style11 style9">Up to Three Ton Capacity </span></b><span class="style9"><br>
			Bridge crane kits provide an economical and quick way of acquiring your own modern &quot;factory built&quot; bridge crane Assembly 
				Machines for the handling of heavy loads. Units can be installed on parallel I-beams or wide flanged beams. These bridge cranes kits employ the use of cast iron wheels containing sealed precision bearings. &quot;Safety- Lug&quot; type end plates are standard on each end truck, acting as railsweeps and preventing the unit from falling in case of wheel mounting fatigue.<br>
				<br>
				Each end truck is adjustable to fit standard ASTM I-beams and wide flanged beams ranging from 6&quot; to 12&quot;. Units will accept span beams up to 30ft long, varied in size from 6&quot; to 12&quot;. Applications from 500 lb. to 6,000 lb. capacity can be assembled from these kits. Each kit is complete with two end truck assemblies contain a total of eight load wheels.<br>
				<br>
				Accessory items for these kits include &quot;span beam end stops&quot; and &quot;capacity decals&quot; for your application when required by &quot;O.S.H.A.&quot; and &quot;Industrial Safety Requirements&quot; for overhead bridge cranes.</font></span></p>
           </td>
         </tr>

         <tr>
           <td width="333" height="359" valign="top" style="font-family: Arial, Helvetica, sans-serif"><p align="justify" class="style11">
			<b>Models with Side Guide Rollers<br>
            <a href="images/47905.pdf" target="_blank" class="style1"><span class="style2">Model 47905 (3-ton)</span></a><b><br>
            <span class="style5"><a href="images/44525.pdf" target="_blank"><span class="style3"><span class="style6">Model 44525 (2-to<span class="style7">n</span></span></span></a></span><span class="style8"><a href="images/44525.pdf" target="_blank"><span class="style3">)</span></a></span><br>
            </b></b><br>
            <font face="Verdana">These units are supplied with side guide rollers and non-flanged cast iron, universal tread wheels containing sealed precision bearings. The side guide rollers located at all four corners of each end truck will keep the unit parallel on the beam rail. This allows for easier movement of loads up to the maximum rated capacity of your bridge crane assembly. Each end truck is adjustable for 6&quot; to 12&quot; size beams without the use of special shims.&nbsp; Both models are designed as a bottom running kit only.</font></p>
           <p align="justify" class="style10"><b>Models with Flanged Wheels<br>
             <span class="style11"><b><a href="images/46758.pdf" target="_blank" class="style1"><span class="style2">Model 46758 (3-ton)</span></a><b><br>
             <span class="style5"><a href="images/44600.pdf" target="_blank"><span class="style3"><span class="style6">Model 44600 (2-to<span class="style7">n</span></span></span></a></span><span class="style8"><a href="images/44525.pdf" target="_blank"><span class="style3">)</span></a></span></b></b></span>             <br>
             <b><span class="style11"><b><a href="images/50387.pdf" target="_blank" class="style1"><span class="style2"><b><b><b><b><span class="style5"><a href="images/50387.pdf" target="_blank"><span class="style3"><span class="style6">Model 50387 (1-to<span class="style7">n</span></span></span></a></span></b></b></b></b>)</span></a><b><br>
             <span class="style5"><a href="images/50386.pdf" target="_blank"><span class="style3"><span class="style6">Model 50386 (1/2-to<span class="style7">n</span></span></span></a></span><span class="style8"><a href="images/44525.pdf" target="_blank"><span class="style3">)</span></a></span></b></b></span> </b>             
              <span class="style3"></span></b></p>
           </td>

           <td width="206" valign="top" style="font-family: Arial, Helvetica, sans-serif">			 <img src="images/Bridgecranecat.gif" alt="CIGNYS Side Guide Rollers" width="200" height="337"></td>
         </tr>
<tr>
<td colspan="2">
  <p align="justify" class="style9"><font face="Verdana">This economical bridge crane kit comes standard with cast iron, universal tread flanged wheels containing sealed precision bearings. The wheel flanges help to align the end trucks along the runway beams. Each end truck is adjustable for 6&quot; to 12&quot; size beams without the use of special shims. These models can be used as a top or bottom running kit if required. Standard 2 and 3-ton models fit 3.33&quot; to 5.25&quot; flange widths. Standard half-ton and 1-ton models fit rails to 5.08&quot; flange widths. Add (-1) to the part number for beam flange widths of 5&quot;-7&quot;, (-2) for 7&quot;-9&quot; flange widths, or (-3) for 9&quot;-11&quot; flange widths.</font></p>
  <p align="justify" class="style3"><span class="style9"><font face="Verdana">The approximate weight range of these kits is 280-300 lb.<br>
  </font></span><span class="style10"><b><span class="style11 style9"><strong>PDF CAD drawings are available upon request for the (-#) models </strong></span></b></span></p>
  </td>
</tr>
      </table>

<!-- End of Main Content Cell -->

</td>
</tr>

<tr>
<td colspan="2">
<img src="images/bottom_shadow.jpg" width="750" height="37"></td>
</tr>
</table>








<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>

</body>
</html>


