<!--//
var clicked_txt = "";
function textclick(bild) {
	if(clicked_txt != ""){
		document.getElementById(clicked_txt+'_txt').className='';
    }
	document.getElementById(bild+'_txt').className='nav_active';
    clicked_txt = bild;
}
function textover(bild) {
	document.getElementById(bild+'_txt').className='nav_active';
}
function textout(bild) {
	if(clicked_txt != bild){
		document.getElementById(bild+'_txt').className='';
	}
}
//-->

