function grafik() {
	if(document.images) {
		this.length = grafik.arguments.length;
			for(var i = 0; i < this.length; i++) {
			this[i] = new Image();
			this[i].src = grafik.arguments[i];
			}
		}
	}
function button(i) {
	document[i].src = '../img/b_over.gif';
	}
function normal(i) {
	document[i].src = '../img/'+i+'.gif';
	}

function preload() {
if(document.images) var pix = new grafik("../img/b_over.gif");
}
