<!--
function togo (wert){
	window.location.href = wert;
}
// info
function showinfo(eid) {
	e=document.getElementById(eid).style;
	if (e.display!='') {
		e.display='';
		return true;
	}
}
function openWin( windowURL, windowName, windowFeatures ) {
	return window.open( windowURL, windowName, windowFeatures ) ; 
}
function BlurLinks(){
	lnks=document.getElementsByTagName("a");
	for(i=0;i<lnks.length;i++){
		lnks[i].onfocus=new Function("this.blur()");
	}
	
}
function getImgPath (src){
	pathAr = src.split('/');
	pathAr.pop();
	path = pathAr.join("/");
	return path+'/';
}
function hoverNav(searchel, nav_n, nav_h){
	navlist = $$(searchel);
	navlist.each(function(el){
		el.addEvent('mouseover', function(e) {
			path = getImgPath (this.src);
			this.src = path+nav_h;
		});
		el.addEvent('mouseout', function(e) {
			path = getImgPath (this.src);
			parennode = this.getParent();
			if (parennode.nodeName.toLowerCase() != 'span'){
				this.src = path+nav_n;
			}
		});
	});
	
}
window.addEvent('domready', function() {
	BlurLinks ();
	hoverNav('#uln li img', 'nav_n.gif', 'nav_h.gif');
});
//onload=BlurLinks;
// -->