function $(id){
    return document.getElementById(id);
}


function show(){
show = true;
show_innen();
}

function show_innen(){
    if(show==true){
    $('innen').style.display="inline";
    $('anwaelte').style.paddingBottom="0px";
    for(i=1; i<=9; i++){
			 $('a'+i).onmouseover=function(){
            this.setAttribute('src',this.className.match(/domroll (\S+)/)[1]);
            this.parentNode.parentNode.style.background="URL(_img/pfeil.gif) no-repeat 15px 5px";
       }
       $('a'+i).onmouseout=function(){
            if(this.getAttribute('touch')!=0) {
                 this.parentNode.parentNode.style.background="";
                 this.setAttribute('src',this.getAttribute('xsrc'));
            }
       }
    }
    }
}




