<!--
browsok = (((navigator.appName == "Netscape")
&& (parseInt(navigator.appVersion) >= 3))
|| ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion)>=3)));
if(browsok){
  // MouseOn   
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     home1 = new Image(114, 118);
     home1.src = "../images/bt-home-mo.gif";
     abt1 = new Image(114, 118);
     abt1.src = "../images/bt-aboutus-mo.gif";
     bra1 = new Image(114, 118);
     bra1.src = "../images/bt-brands-mo.gif";          
     df1 = new Image(114, 118);
     df1.src = "../images/bt-designer-furniture-mo.gif";
     con1 = new Image(114, 118);
     con1.src = "../images/bt-contactus-mo.gif";                 


  // MouseOff
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     home0 = new Image(114, 118);
     home0.src = "../images/bt-home.gif";
     abt0 = new Image(114, 118);
     abt0.src = "../images/bt-aboutus.gif";
     bra0 = new Image(114, 118);
     bra0.src = "../images/bt-brands.gif";          
     df0 = new Image(114, 118);
     df0.src = "../images/bt-designer-furniture.gif";                     
     con0 = new Image(114, 118);
     con0.src = "../images/bt-contactus.gif";
}
function BNB_mouseon(n){
     if(browsok){
          imageON = eval(n + "1.src");
          document [n].src = imageON;
          }
}
function BNB_mouseoff(n){
     if(browsok){
imageOFF = eval(n + "0.src");
     document [n].src = imageOFF;
          }
}
// -->