function setRoleAttribute(id, rolevalue) {
if(document.getElementById(id)) {
document.getElementById(id).setAttribute("role", rolevalue);
}
}
function setAriaRoleElementsById() {
//Add all Id:s and aria roles here
  setRoleAttribute("title", "banner");
  setRoleAttribute("margin", "complementary");
  setRoleAttribute("footer", "contentinfo");
  setRoleAttribute("frmMail", "form");
  setRoleAttribute("main", "main");
  setRoleAttribute("menu", "navigation");
  setRoleAttribute("words", "search");
  setRoleAttribute("presentation", "presentation");
}
window.onload=function(){ setAriaRoleElementsById(); }
