<!--

  var ns4up = (document.layers) ? 1 : 0;
  var ie4up = (document.all) ? 1 : 0;

  var doc_width = 800, doc_height = 600;
  
  if (ns4up) {
    doc_width = self.innerWidth;
    doc_height = self.innerHeight;
  } 

  if (ie4up) {
    doc_width = document.body.clientWidth;
    doc_height = document.body.clientHeight;
  }

YOffset=150;
staticYOffset=50; 
XOffset=0;
if (doc_width>800) {
  XOffset=Math.round((doc_width-800)/2);
}
slideSpeed=20 
waitTime=500; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
menuBGColor="black";
menuIsStatic="yes";
menuWidth=200; // Must be a multiple of 10! no quotes!!
menuCols=1;
hdrFontFamily="Verdana";
hdrFontSize="2";
hdrFontColor="black";
hdrBGColor="#EAF5FF";
hdrAlign="center";
hdrVAlign="center";
hdrHeight="8";
linkFontFamily="Verdana";
linkFontSize="1";
linkBGColor="white";
linkOverBGColor="#FFFF99";
linkTarget="_self";
linkAlign="left";
barBGColor="#CC3333";
barFontFamily="Verdana";
barFontSize="2";
barFontColor="white";
barVAlign="center";
barWidth=20; // no quotes!!
barText='PRODUCTS RANGE' // <IMG> tag supported, Ex: '<img src="some.gif" border=0>'

// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header

addHdr("PRODUCTS");
addItem("BT MAS 403", "product1.html", "", 1);
addItem("ISO DIN 2080", "product2.html", "", 1);
addItem("CAT DIN 69871", "product3.html", "", 1);
addItem("R8/MITR", "product4.html", "", 1);
addItem("PULL STUD", "product5.html", "", 1);
addItem("ANSI", "product6.html", "", 1);
addItem("COLLETS", "product7.html", "", 1);
addItem("SLEEVE DIN 6329", "product8.html", "", 1);
addItem("ADUSTABLE DIN 6327", "product9.html", "", 1);
addItem("HSK & OTHER", "other.html", "", 1);
addItem("NUT, BORING HEAD, FLOTING", "other2.html", "", 1);
addItem("FACE DRIVER", "other2.html", "", 1);
addItem("HYDROLIC COLLET CHOUK", "other2.html", "", 1);
addItem("INTERNAL GRINDER SPINDLE", "other2.html", "", 1);



buildMenu();

//-->

