function LoadImages(img)	{	if (document.images)	{		for ( i=0 ; img.length > i ; i++ )	{			eval (img[i] + "on  = new Image()")			eval (img[i] + "off = new Image()")			eval (img[i] + "on.src  = 'bilder/on_" + img[i] + ".gif'")			eval (img[i] + "off.src = 'bilder/off_" + img[i] + ".gif'")		}	}}function ImgOn(img)	{	if (document.images)		document.images[img].src =  eval (img + "on.src");}function ImgOff(img)	{	if (document.images)		document.images[img].src =  eval (img + "off.src");}