// Vorladen von Bildern
home_h = new Image();
home_h.src = "/4/wLayout/images/layout/icon_home_hover.gif";
home_l = new Image();
home_l.src = "/4/wLayout/images/layout/icon_home.gif";

print_h = new Image();
print_h.src = "/4/wLayout/images/layout/icon_print_hover.gif";
print_l = new Image();
print_l.src = "/4/wLayout/images/layout/icon_print.gif";

email_h = new Image();
email_h.src = "/4/wLayout/images/layout/icon_email_hover.gif";
email_l = new Image();
email_l.src = "/4/wLayout/images/layout/icon_email.gif";

sitemap_h = new Image();
sitemap_h.src = "/4/wLayout/images/layout/icon_sitemap_hover.gif";
sitemap_l = new Image();
sitemap_l.src = "/4/wLayout/images/layout/icon_sitemap.gif";


// Mouseover
function txxLighOn(pic){
	window.document.images[pic].src = eval(pic + "_h.src");
}
function txxLighOff(pic){
	window.document.images[pic].src = eval(pic + "_l.src");
}

