<!-- 
if(document.images) {
		aboutoff = new Image();
		aboutoff.src = "/images/buttons/button_about_off.jpg";
		aboutover = new Image();
		aboutover.src = "/images/buttons/button_about_over.jpg";
		
		banksoff = new Image();
		banksoff.src = "/images/buttons/button_banks_off.jpg";
		banksover = new Image();
	        banksover.src = "/images/buttons/button_banks_over.jpg";
		
		businessoff = new Image();
		businessoff.src = "/images/buttons/button_business_off.jpg";
		businessover = new Image();
		businessover.src = "/images/buttons/button_business_over.jpg";
		
                privateoff = new Image();
		privateoff.src = "/images/buttons/button_private_off.jpg";
		privateover = new Image();
		privateover.src = "/images/buttons/button_private_over.jpg";
		  		
                financialoff = new Image();
		financialoff.src = "/images/buttons/button_financial_off.jpg";
		financialover = new Image();
		financialover.src = "/images/buttons/button_financial_over.jpg";
}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         
//-->