<!--
Normal1 = new Image();
Normal1.src = "image1/button1.gif";     /* erste Standard-Grafik */
Highlight1 = new Image();
Highlight1.src = "image1/button1h.gif"; /* erste Highlight-Grafik */

Normal2 = new Image();
Normal2.src = "image1/button2.gif";     /* zweite Standard-Grafik */
Highlight2 = new Image();
Highlight2.src = "image1/button2h.gif"; /* zweite Highlight-Grafik */


/* usw. fuer alle weiteren zu benutzenden Grafiken */

function Bildwechsel(Bildnr,Bildobjekt) {
 window.document.images[Bildnr].src = Bildobjekt.src;
}
//-->