// JavaScript Document

document.write('<div id="product" style="display:none;position:absolute;" onMouseover="document.getElementById(\'product\').style.display=\'\';" onMouseOut="document.getElementById(\'product\').style.display=\'none\';"><table width="200px" bgcolor="#005993" border="0" cellspacing="0" cellpadding="0">\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="hydrolator.htm" class="body_white"><strong>HYDROLATOR 1000</strong></a></td>\
  </tr>\
  <tr>\
  	<td height="1px" bgcolor="#D1E5EC"><img src="images/spacer.gif" height="1px"></td>\
  </tr>\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="ultralight_aricraft.htm" class="body_white"><strong>ULTRALIGHT AIRCRAFT</strong></a></td>\
  </tr>\
   <tr>\
  	<td height="1px" bgcolor="#D1E5EC"><img src="images/spacer.gif" height="1px"></td>\
  </tr>\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="stripper.htm" class="body_white"><strong>JUPITER LX - Laser Wire Stripper</strong></a></td>\
  </tr>\
   <tr>\
  	<td height="1px" bgcolor="#D1E5EC"><img src="images/spacer.gif" height="1px"></td>\
  </tr>\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="new_products.htm" class="body_white"><strong>New Products</strong></a></td>\
  </tr>\
  <tr>\
  	<td height="1px" bgcolor="#D1E5EC"><img src="images/spacer.gif" height="1px"></td>\
  </tr>\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="http://www.twicycle.com" target="blank" class="body_white"><strong>Twicycle</strong></a></td>\
  </tr>\
  <tr>\
  	<td height="1px" bgcolor="#D1E5EC"><img src="images/spacer.gif" height="1px"></td>\
  </tr>\
  <tr>\
    <td height="25px" style="padding-left:10px;" align="left"><a href="future_products.htm" class="body_white"><strong>Future Products</strong></a></td>\
  </tr>\
</table></div>');

var act_cit;
function product_show(objec){
act_cit=objec.id;
var curleft = curtop = 0;
		if (objec.offsetParent) {
		curleft = objec.offsetLeft
		curtop = objec.offsetTop
		while (objec = objec.offsetParent) {
			curleft += objec.offsetLeft
			curtop += objec.offsetTop
		}
	}
	document.getElementById('product').style.display="";
	document.getElementById('product').style.left=curleft + 'px';
	document.getElementById('product').style.top=curtop + 22 + 'px';
	}
function product_hide(){
		document.getElementById('product').style.display="none";
	}