//Graues KŠstchen fŸr Pulldown-MenŸ 
if (document.images) {
	img_on =new Image(); img_on.src="images/grauesKaestchen.gif";
	img_off =new Image(); img_off.src="images/spacer.gif";
}
function handleOver(image) {
	if (document.images)
	{
		 image.src=img_on.src;
	}
}
function handleOut(image) {
	if (document.images) image.src=img_off.src
}
