// JavaScript Document
document.write('<table width="0" style="position:absolute;display:none; border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;border-bottom: 1px solid #ffffff;" id="Products"  border="0" cellspacing="0" cellpadding="0" onMouseOver="document.getElementById(\'Products\').style.display=\'\';" onMouseOut="document.getElementById(\'Products\').style.display=\'none\'">\
		 <tr>\
		<td bgcolor="#b6290a" style="opacity:0.9;filter: alpha(opacity=90) ;" valign="top">\
			<table width="180" border="0" cellspacing="0" cellpadding="0">\
			  <tr>\
				<td style="padding:6px 6px 12px 12px;">\
					<table width="180" border="0" cellspacing="0" cellpadding="0">\
					  <tr>\
						<td><a href="coils_tooling.htm" class="dropdown">Coils & Tooling</a></td>\
						</tr>\
						<tr>\
						    <td height="10px"></td>\
						</tr>\
						<tr>\
						   <td><a href="turnkey_machines.htm" class="dropdown">Turn-Key Machines</a></td>\
						</tr>\
						<tr>\
						    <td height="10px"></td>\
						</tr>\
						<tr>\
						    <td><a href="development.htm" class="dropdown">Process Development</a></td>\
						</tr>\
						 <tr>\
							<td height="0px"></td>\
						</tr>\
						<tr>\
						    <td height="10px"></td>\
						</tr>\
						<tr>\
						    <td><a href="equipment_re_build.htm" class="dropdown">Equipment Re-build</a></td>\
						</tr>\
						 <tr>\
							<td height="0px"></td>\
						</tr>\
					</table>\
				</td>\
			  </tr>\
			</table>\
		</td>\
	  </tr>\
	 </table>');

var act_cit_id;
function Products_show(objec1){
act_cit_id=objec1.id;
var curleft = curtop = 0;
		if (objec1.offsetParent) {
		curleft = objec1.offsetLeft
		curtop = objec1.offsetTop
		while (objec1 = objec1.offsetParent) {
			curleft += objec1.offsetLeft
			curtop += objec1.offsetTop;
		}
	}
	document.getElementById('Products').style.display="";
	document.getElementById('Products').style.left = curleft+ -20 +"px";
	document.getElementById('Products').style.top = curtop + 53 +"px";

}

function Products_hide(){
	document.getElementById('Products').style.display="none";
}

