function verteiler(menu,onoff) {


 if(document.images) {

	if (onoff=='on') {

		document.images[menu].src = "bottoni/"+menu+"_on.jpg";
	} else {
		document.images[menu].src = "bottoni/"+menu+"_off.jpg";
	}

 }
}


var anzahlObj = 0;
Bilder = new Array();

function laden(erstes, zweites) {
  if (document.images) {
    Bilder[anzahlObj] = new Array(2);
    Bilder[anzahlObj][0] = new Image();
    Bilder[anzahlObj][0].src = erstes;
    Bilder[anzahlObj][1] = new Image();
    Bilder[anzahlObj][1].src = zweites;
    anzahlObj++;
  }
}


//Bilder in den Speicher laden:
laden( "bottoni/bott1_off.jpg", "bottoni/bott1_on.jpg");
laden( "bottoni/bott2_off.jpg", "bottoni/bott2_on.jpg");
laden( "bottoni/bott3_off.jpg", "bottoni/bott3_on.jpg");
laden( "bottoni/bott4_off.jpg", "bottoni/bott4_on.jpg");
laden( "bottoni/bott5_off.jpg", "bottoni/bott5_on.jpg");
laden( "bottoni/bott6_off.jpg", "bottoni/bott6_on.jpg");
