function preloadImages() {
	if (document.images) {
		img1 = new Image(); img1.src="images/button_about_over.gif";
        preloadFlag=1;
	}
}

preloadFlag=1; //needs 0 to use preloadImages();
nb='_over';
activation='_active';

function on(button) {
		if(preloadFlag==1 & button.src.indexOf(activation)<=0){
		x = button.src;
		y = x.substring(0,x.length-4);
		ext = x.substring(x.length-4,x.length);
		act=y+nb+ext;
		button.src=act;
		 }
}

function off(button) {
		x = button.src;
		ext = x.substring(x.length-4,x.length);
		tocut = x.length-(nb.length+ext.length);
		if (x.indexOf(nb)>0) {
		  y = x.substring(0,tocut);
		  act = y+ext;
		  button.src=act;
		 }
}