// array für preload-images
img = new Array("sphinxlogo", "nback", "nforward", "nkongup", "kongfoundationl", "kongdesignl", "kongfoundations", "kongdesigns");

// preload der images
if (document.images) {
	for (var i=0;i<img.length;i++) {
	eval(img[i]+"0=new Image()");
	eval(img[i]+"0.src='images/"+img[i]+"0.gif'");
	eval(img[i]+"1=new Image()");
	eval(img[i]+"1.src='images/"+img[i]+"1.gif'"); 
	}
}

// ersetzen von images
function ovr(bild)
	{
	if (document.images)
	document.images[bild].src = 'images/' +bild+ '1.gif';
	}

function out(bild)
	{
	if (document.images)
	document.images[bild].src = 'images/' +bild+ '0.gif';
	}
