/* To avoid CSS expressions while still supporting IE 7 and IE 6, use this script */
/* The script tag referencing this file must be placed before the ending body tag. */
/* Use conditional comments in order to target IE 7 and older:
*/
(function() {
function addIcon(el, entity) {
var html = el.innerHTML;
el.innerHTML = '' + entity + '' + html;
}
var icons = {
'icon-hex-in-00': '',
'icon-hex-in-90': '',
'icon-hex-hole-90': '',
'icon-hex-solid-90': '',
'icon-hex-hole-00': '',
'icon-hex-solid-00': '',
'0': 0
},
els = document.getElementsByTagName('*'),
i, c, el;
for (i = 0; ; i += 1) {
el = els[i];
if(!el) {
break;
}
c = el.className;
c = c.match(/icon-[^\s'"]+/);
if (c && icons[c[0]]) {
addIcon(el, icons[c[0]]);
}
}
}());