// JavaScript Document

if(document.images){
		b1off=new Image();b1off.src="images/home.gif";
		b1on=new Image();b1on.src="images/home_on.gif";		
		
		b2off=new Image();b2off.src="images/accuraat.gif";
		b2on=new Image();b2on.src="images/accuraat_on.gif";	
			
		b3off=new Image();b3off.src="images/branches.gif";
		b3on=new Image();b3on.src="images/branches_on.gif";	
			
		b4off=new Image();b4off.src="images/nieuws.gif";
		b4on=new Image();b4on.src="images/nieuws_on.gif";	
			
		b5off=new Image();b5off.src="images/acces.gif";
		b5on=new Image();b5on.src="images/acces_on.gif";	
		
		b6off=new Image();b6off.src="images/contact.gif";
		b6on=new Image();b6on.src="images/contact_on.gif";
		
		
	}
function enable(bn){
	if(document.images){
		loc = "b" + bn;
		document[loc].src = eval(loc + "on.src");
	}
}
function disable(bn){
	if(document.images){
		loc = "b" + bn;
		document[loc].src = eval(loc + "off.src");
	}
}
	
//-->