function bild(id,val){
	if(val)t="block";
         else t="none";
        document.getElementById(id).getElementsByTagName('img')[0].style.display = t;
}
function init(){
         ids=Array('show','info','unt','lin','kon');
         for (var i = 0; i < ids.length; i++){
		var link = document.getElementById( ids[i] );
                 if(document.getElementById( ids[i]).getAttribute('href')){
		link.i = i;
		link.onmouseover = function() {
			bild( ids[this.i] ,1);
		};
		link.onmouseout = function() {
			bild( ids[this.i] ,0);
		};
                 }
	}
}
window.onload = init;
