window.onload = function() {
	$$("a.extern-link-new-window, a.extern, a.pdf, a.intern-link, a.email, a.file-download, a.top, a.sound, a.video, a.back, #sidebar-right a, #leftcontent a").each(function(a) {		
		if(window.ie && !a.getElementsByTagName("img")[0]) { // fuer ie das icon (hintergrund: span) hinzufuegen 
			
			a.addClass("js-" + a.className);			

			var icnLinkExtern = new Element("span"); // span tag in link einbauen
			icnLinkExtern.setProperty("class","icon");
			a.adopt(icnLinkExtern);
		}
	});
	
	if(window.ie) { // flackern im IE verhindern
		//document.execCommand("BackgroundImageCache", false, true);
	}
}