function wai_aria() {
 if (document.getElementById('content')) document.getElementById('content').setAttribute('role', 'main');
 if (document.getElementById('navi')) document.getElementById('navi').setAttribute('role', 'navigation');
 if (document.getElementById('suche')) document.getElementById('suche').setAttribute('role', 'search');
 }
 window.onload = wai_aria;
