That is a layout quirk of IE and isn't apparent in other browsers. To get rid of it, ensure that there is no linebreak in the code after the image tag and before the closing </td> tag (modified from your source code):
HTML Code:
<td width="636" height="400" bgcolor="#003000">
<img src="Images/Houses/graystone12.jpg" name="slide" style="filter:blendTrans(duration=2)" border="0" width="640" height="400" alt="Classic Windows, Inc. - Custom Crafted Clad Wood Windows and Doors"><script type="text/javascript">
var whichlink=0
var whichimage=0
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0
function slideit(){
if (!document.images) return
if (ie) document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
if (ie) document.images.slide.filters[0].play()
whichlink=whichimage
whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
setTimeout("slideit()",slidespeed+blenddelay)
}
slideit()
</script></td>
Bookmarks