// ABBR hack for Win/IE, by Jason Davis (www.jasonkarldavis.com).
   // Use freely as long as these comments are intact

   if (typeof window.attachEvent != "undefined") { // Internet Explorer for Windows
      window.attachEvent("onload", function() {
         document.documentElement.setAttribute("xmlns:acc", "http://www.w3.org/1999/xhtml");
         document.body.innerHTML = document.body.innerHTML.replace(/<abbr/gi, "<acc:abbr").replace(/<\/abbr/gi, "</acc:abbr");
      });
   } 