/////////////////////////////////////////
//erzeugt Fenster auf Grafik in Infrastruktur
//das unter Grafik einbinden:
///script type="text/javascript">
//generatePopByID('i46382','mm/flugverbindungBig.png');
////script>
////////////////////////////////////////

function generatePopByID(id,imagebig){
	var link = document.createElement("a"); 
	link.setAttribute('href',imagebig);
    //link.setAttribute('onClick','javascript:window.open("'+imagebig+'","pophelp","f1,f2,f3");return false;');   
    link.setAttribute('rel','lightbox');
    imgsmall = document.getElementById(id);
	imgsmall.parentNode.appendChild(link);
    link.appendChild(imgsmall);
}

navHover = function() {
	var lis = document.getElementById("dsmenus").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
} 
if (window.attachEvent) window.attachEvent("onload", navHover);
