<!--

var menu_principal = new Array( new Array());
menu_principal[1] = [ // ABOUT US
	//"Profil|de/aboutus/profile.htm|_top"
];
menu_principal[2] = [ // VENDOR SERVICES
	"Manufacturer Relationships|vendor/manufacturer.htm|_top",
	"Dealer Services|vendor/dealer.htm|_top"
];

menu_principal[3] = [ // PRODUCTS/SERVICES
	"Agricultural|products/agri.htm|_top",
	"Commercial Vehicles|products/commercial.htm|_top",
	"Construction|products/construction.htm|_top",
	"Groundscare|products/ground.htm|_top",
	"IT|products/it.htm|_top",
	"Materials Handling|products/materials.htm|_top",
	"Office Equipment|products/office.htm|_top",
	"Other assets|products/other.htm|_top",
	"Quote form|products/quote.htm|_top"
];

menu_principal[4] = [ // FINANCE PRODUCTS
	"Hire Purchase|finance/hire.htm|_top",
	"Finance Lease|finance/finance.htm|_top",
	"Operating Lease|finance/operating.htm|_top",
	"Contract Hire|finance/contract.htm|_top",
	"Fixed and Variable Rate Finance|finance/fixed.htm|_top",
	"Rental Agreements|finance/rental.htm|_top",
	"Flexible Payments|finance/flexible.htm|_top"
];

menu_principal[5] = [ // KEY FIGURES
	//"Message DRH|de/work_with_us/|_top"
];



var ns4 = (document.layers)? true:false;
var ie4 = ((document.all) && (!document.getElementById))? true:false;
var ns6 = ((document.getElementById) && (!ie4))? true:false;

var tto;
var thisDiv;

function showMenu(theItem){
  clearTimeout(tto);
   if (ns4) {
    	for (var i = 1; i<=10; i++) {
		if (document.layers['smenu'+i]) {document.layers['smenu'+i].display='none';}
	}
      thisDiv = document.layers[theItem];
      thisDiv.display="block";
	   }
   if (ie4) {
	for (var i = 1; i<=10; i++) {
		if (document.layers['smenu'+i]) {document.layers['smenu'+i].display='none';}
	}      	
      thisDiv = document.layers[theItem];
      if ((thisDiv) &&(thisDiv!=document.layers[theItem])){
		   thisDiv.display='none';
	   }
      thisDiv = document.layers[theItem];
      thisDiv.display="block";
      }
   if (ns6) {
    	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}   	
      thisDiv = document.getElementById(theItem);      
      if ((thisDiv) &&(thisDiv!=document.getElementById(theItem).style)){
        	thisDiv.display='none';
	   }
      thisDiv = document.getElementById(theItem).style;      
      thisDiv.display="block";     
      }
}
			
function hideMenu(theItem){
   var thetime=100;
   
   if (ns4) {
      thisDiv = document.layers[theItem];
      tto=setTimeout("thisDiv.display='none'",thetime);
      }
   if (ie4) {
      thisDiv = document.layers[theItem];
      tto=setTimeout("thisDiv.display='none'",thetime);
      }
   if (ns6) {
      thisDiv = document.getElementById(theItem).style;
      tto=setTimeout("thisDiv.display='none'",thetime);
      }
}



//-->
