/*function styleAbbr() {
	var oldBodyText, newBodyText, reg
	if (isIE) {
		oldBodyText = document.body.innerHTML;
		reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
		newBodyText = oldBodyText.replace(reg, '<abbr $1><span class=\"abbr\" $1>$2</span></abbr>');
		document.body.innerHTML = newBodyText;
	}
}

window.onload = function(){styleAbbr()};

isIE = (document.all) ? true:false;*/

//<![CDATA[
// 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" && typeof window.opera == "undefined") { // Internet Explorer for Windows
	window.attachEvent("onload", function() {

		// Replace <abbr> with <acc:abbr>
		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");

		// Provide an indication for <acc:abbr> elements with a title attribute
		var abbrs    = document.getElementsByTagName("abbr"); // IE seems to ignore the namespace
		var numAbbrs = abbrs.length;
		for (var i = 0; i < numAbbrs; i++) {
			if (abbrs[i].title) {
				abbrs[i].style.cursor       = "help";
				abbrs[i].style.borderBottom = "1px #cc9 dotted";
			}
		}
	});
}
//]]>