/*********************************************************************************
**	file:	roll.js
**
**		Definiert das Hauptmenü mit mouseOver
**
**********************************************************************************
	**	author:		Elmar Weixlbaumer
	**	date:		25-10-2002
	** 	Version: 	1.0
	**	Copyright 	(C) 2002  Elmar Weixlbaumer
	**
	********************************************************************************/

Normal1 = new Image();
Normal1.src = "../images/button_1.gif";     /* erste Standard-Grafik */
Highlight1 = new Image();
Highlight1.src = "../images/button_1_dark.gif"; /* erste Highlight-Grafik */

Normal2 = new Image();
Normal2.src = "../images/button_2.gif";     /* zweite Standard-Grafik */
Highlight2 = new Image();
Highlight2.src = "../images/button_2_dark.gif"; /* zweite Highlight-Grafik */

Normal3 = new Image();
Normal3.src = "../images/button_3.gif";     
Highlight3 = new Image();
Highlight3.src = "../images/button_3_dark.gif"; 

Normal4 = new Image();
Normal4.src = "../images/button_4.gif";     
Highlight4 = new Image();
Highlight4.src = "../images/button_4_dark.gif"; 

Normal5 = new Image();
Normal5.src = "../images/button_5.gif";     
Highlight5 = new Image();
Highlight5.src = "../images/button_5_dark.gif"; 

Normal6 = new Image();
Normal6.src = "../images/button_6.gif";     
Highlight6 = new Image();
Highlight6.src = "../images/button_6_dark.gif"; 


/* usw. fuer alle weiteren zu benutzenden Grafiken */

function changeImage(Bildnr,Bildobjekt) {
 window.document.images[Bildnr].src = Bildobjekt.src;
}


