<!--
// ----------------------------------------------------------------
// Anzeigen Buttons mit onmouseover
// SPYROD/07.05.2002
//
// Funktion:	flipimage.js
//
// Parameter:
// $IMAGE: 	Button name
// $NAME:	button file nae (source)
//
// Beispiel:		<A onmouseover="javascript:flipImage('home','button1on')" 
//					onmouseout="javascript:flipImage('home','button1')" 
//					href="http://www.otherdomain.xxx/">
//					<IMG height=20 alt="Home" src="images/buttons/button011.jpg"  
//					width=140 border=0 name=home>
// ----------------------------------------------------------------	

// --- Laden der Bilder

	button1= new Image();
	button1.src = "images/buttons/button011.jpg";
	button1on = new Image();
	button1on.src = "images/buttons/button010.jpg";

	button2= new Image();
	button2.src = "images/buttons/button021.jpg";
	button2on = new Image();
	button2on.src = "images/buttons/button020.jpg";

	button3= new Image();
	button3.src = "images/buttons/button031.jpg";
	button3on = new Image();
	button3on.src = "images/buttons/button030.jpg";

	button4= new Image();
	button4.src = "images/buttons/button041.jpg";
	button4on = new Image();
	button4on.src = "images/buttons/button040.jpg";

	button5= new Image();
	button5.src = "images/buttons/button051.jpg";
	button5on = new Image();
	button5on.src = "images/buttons/button050.jpg";

	button6= new Image();
	button6.src = "images/buttons/button061.jpg";
	button6on = new Image();
	button6on.src = "images/buttons/button060.jpg";

	button7= new Image();
	button7.src = "images/buttons/button071.jpg";
	button7on = new Image();
	button7on.src = "images/buttons/button070.jpg";

	button8= new Image();
	button8.src = "images/buttons/button081.jpg";
	button8on = new Image();
	button8on.src = "images/buttons/button080.jpg";

	button9= new Image();
	button9.src = "images/buttons/button091.jpg";
	button9on = new Image();
	button9on.src = "images/buttons/button090.jpg";

	button10= new Image();
	button10.src = "images/buttons/button101.jpg";
	button10on = new Image();
	button10on.src = "images/buttons/button100.jpg";

//---------------------------------------------------------
// Bilderwechsel
//---------------------------------------------------------
function flipImage($IMAGE,$NAME) 
{ 
    document.images[$IMAGE].src = eval($NAME + ".src");
};

// -->

