Normal1 = new Image();
Normal1.src = "pics/previous.gif";     /* erste Standard-Grafik */
Highlight1 = new Image();
Highlight1.src = "pics/previous_gray.gif"; /* erste Highlight-Grafik */

Normal2 = new Image();
Normal2.src = "pics/reset.gif";     /* erste Standard-Grafik */
Highlight2 = new Image();
Highlight2.src = "pics/reset_gray.gif"; /* erste Highlight-Grafik */

Normal3 = new Image();
Normal3.src = "pics/next.gif";     /* erste Standard-Grafik */
Highlight3 = new Image();
Highlight3.src = "pics/next_gray.gif"; /* erste Highlight-Grafik */


/* usw. fuer alle weiteren zu benutzenden Grafiken */

function Bildwechsel(Bildnr,Bildobjekt) 
{
 window.document.images[Bildnr].src = Bildobjekt.src;
}