The following are the CSS lines below:
#logo a { background-image: expression(this.runtimeStyle.backgroundImage = "none", this.innerHTML = '<img src="http://www.llrx.com/themes/llrx/images/logo.gif" border="0" alt="' + this.innerHTML + '">'); }
#tagline a { background-image: expression(this.runtimeStyle.backgroundImage = "none", this.innerHTML = '<img src="http://www.llrx.com/themes/llrx/images/h2.gif" border="0" alt="' + this.innerHTML + '">'); }
You assign node to the innerHTMLattribute ALT, but it innerHTMLcontains unscreened HTML, so you end up creating very funky HTML, for example:
<img alt="<img alt="<img alt="<img alt="
A screenshot might seem better:

source
share