// JavaScript Document
if (navigator.appVersion.indexOf("2.") != -1){
	check = false;
	}
if ((navigator.appVersion.indexOf("3.") != -1) && (navigator.appName.indexOf("Explorer") != -1)){
	check = false;
	}
else
 {
	check = true;
	}
	
if (check == true){
	img = new Image();
	img.src = jsPic;
	imgon = new Image();
	imgon.src = jsPicOver;
	imgalt = new Image();
	imgalt.src = jsPicOn;

	img2 = new Image();
	img2.src = jsPic;
	imgon2 = new Image();
	imgon2.src = jsPicOver;
	imgalt2 = new Image();
	imgalt2.src = jsPicOn;

}
imagealt = "";
imagealt2 = "";

function imageon(name,pic){
	if (imagealt != name){
        	document[name].src = eval(pic + "on.src");
	}
}
function imageoff(name,pic){
	if (imagealt != name){
        	document[name].src = eval(pic + ".src");
	}
}
function on(name,pic){
        if (check == true){
	imageon(name,pic);
	}
}
function off(name,pic){
        if (check == true){
	imageoff(name,pic);
	}
}
function alt(name,pic){
	if (check == true){
	document[name].src = eval(pic + "alt.src");
	if (imagealt != name){
		if (imagealt != ""){
			document[imagealt].src = eval(pic + ".src");
		}
	}
	imagealt = name
	}
}

// Untere Buttons
function on2(name,pic){
        if (check == true){
	imageon2(name,pic);
	}
}
function off2(name,pic){
        if (check == true){
	imageoff2(name,pic);
	}
}
function alt2(name,pic){
	if (check == true){
	document[name].src = eval(pic + "alt2.src");
	if (imagealt2 != name){
		if (imagealt2 != ""){
			document[imagealt2].src = eval(pic + "2.src");
		}
	}
	imagealt2 = name
	}
}
function imageon2(name,pic){
	if (imagealt2 != name){
        	document[name].src = eval(pic + "on2.src");
	}
}
function imageoff2(name,pic){
	if (imagealt2 != name){
        	document[name].src = eval(pic + "2.src");
	}
}

