// array für preload-images
img = new Array("home", "jobs", "ueberuns", "bewerben", "kontakt", "fragen", "xbewerb", "xcheck", "xleben", "xbewerber", "xkunden");


// 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/navi/n-"+img[i]+"0.gif'");
	eval(img[i]+"1=new Image()");
	eval(img[i]+"1.src='../images/navi/n-"+img[i]+"1.gif'"); }
}



// ersetzen von images
function ovr(bild)
	{
	if (document.images)
	document.images[bild].src = '../images/navi/n-' +bild+ '2.gif';
	}

function out(bild)
	{
	if (document.images)
	document.images[bild].src = '../images/navi/n-' +bild+ '0.gif';
	}


// popupfenster öffnen
function fensterauf(){
online = window.open("","online","scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=1,resizable=1");
online.focus();
}
