It's a whitespace interpreted by IE as if you're giving nbsp;.
The fix is by changing these (different) lines:
Code:
<a class="thumbnail" href="#thumb">
<img src="http://www.usaauctiondrop.com/photo/tn_217-292-075.JPG" border="0" /><span><img src="http://www.usaauctiondrop.com/photo/217-292-075.JPG" /><br />woo</span>
</a>
</li>
<li>
<a class="thumbnail" href="#thumb">
<img src="http://www.usaauctiondrop.com/photo/tn_217-292-077.JPG" border="0" />
<span><img src="http://www.usaauctiondrop.com/photo/217-292-077.JPG" /><br />woo</span>
</a>
to:
Code:
<li>
<a class="thumbnail" href="#thumb">
<img src="http://www.usaauctiondrop.com/photo/tn_217-292-075.JPG" border="0" /><span><img src="http://www.usaauctiondrop.com/photo/217-292-075.JPG" /><br />woo</span>
</a>
</li>
<li>
<a class="thumbnail" href="#thumb">
<img src="http://www.usaauctiondrop.com/photo/tn_217-292-077.JPG" border="0" /><span><img src="http://www.usaauctiondrop.com/photo/217-292-077.JPG" /><br />woo</span>
</a>
</li>
Hope that helps.
Bookmarks