/* hauptnavigrafiken vorladen - 1. Navigationslevel */
if (document.images) {
img99off = new Image();
img99off.src = "../global/images/news_of.gif";
img98off = new Image();
img98off.src = "../global/images/abou_of.gif";
img97off = new Image();
img97off.src = "../global/images/prod_of.gif";
img96off = new Image();
img96off.src = "../global/images/reci_of.gif";
img95off = new Image();
img95off.src = "../global/images/cont_of.gif";

img99on = new Image();
img99on.src = "../global/images/news_ov.gif";
img98on = new Image();
img98on.src = "../global/images/abou_ov.gif";
img97on = new Image();
img97on.src = "../global/images/prod_ov.gif";
img96on = new Image();
img96on.src = "../global/images/reci_ov.gif";
img95on = new Image();
img95on.src = "../global/images/cont_ov.gif";
}
/* hauptnavigrafiken vorladen - 2. Navigationslevel */
if (document.images) {
img999off = new Image();
img999off.src = "../../global/images/news_of.gif";
img998off = new Image();
img998off.src = "../../global/images/abou_of.gif";
img997off = new Image();
img997off.src = "../../global/images/prod_of.gif";
img996off = new Image();
img996off.src = "../../global/images/reci_of.gif";
img995off = new Image();
img995off.src = "../../global/images/cont_of.gif";

img999on = new Image();
img999on.src = "../../global/images/news_ov.gif";
img998on = new Image();
img998on.src = "../../global/images/abou_ov.gif";
img997on = new Image();
img997on.src = "../../global/images/prod_ov.gif";
img996on = new Image();
img996on.src = "../../global/images/reci_ov.gif";
img995on = new Image();
img995on.src = "../../global/images/cont_ov.gif";
}


/* rollover */
function imgOn(imgName) {
	document[imgName].src=eval(imgName+"off.src");
}
function imgOff(imgName) {
	document[imgName].src=eval(imgName+"on.src");
}