Hi,
On line 63 (approx) of your script you have this:
HTML Code:
<ul id="ImageSlideShow">
<li><a href="http://www.foundunderground.net/images/slider/19-slider.jpg"><img src="images/slider/19-slider.jpg" alt="cool stylish urban footwear" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/3-slider.jpg"><img src="images/slider/3-slider.jpg" alt="looks we like" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/40-slider.jpg"><img src="images/slider/40-slider.jpg" alt="heels sandals boots red black groovy urban" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/9-slider.jpg"><img src="images/slider/9-slider.jpg" alt="stylin outfit dress belted sandals" /></a></li>
<li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike4.jpg"><img src="images/preferredpics source/lookswelike4.jpg" alt="you look so cool where did you get that" /></a></li>
<li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike3.jpg"><img src="images/preferredpics source/lookswelike3.jpg" alt="you look so cool where did you get that" /></a></li>
<li>
</li>
</ul>
Notice the final empty <li> tag? This is causing your blank black space.
If you remove it, so that you then have:
HTML Code:
<ul id="ImageSlideShow">
<li><a href="http://www.foundunderground.net/images/slider/19-slider.jpg"><img src="images/slider/19-slider.jpg" alt="cool stylish urban footwear" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/3-slider.jpg"><img src="images/slider/3-slider.jpg" alt="looks we like" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/40-slider.jpg"><img src="images/slider/40-slider.jpg" alt="heels sandals boots red black groovy urban" /></a></li>
<li><a href="http://www.foundunderground.net/images/slider/9-slider.jpg"><img src="images/slider/9-slider.jpg" alt="stylin outfit dress belted sandals" /></a></li>
<li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike4.jpg"><img src="images/preferredpics source/lookswelike4.jpg" alt="you look so cool where did you get that" /></a></li>
<li><a href="http://www.foundunderground.net/images/preferredpics source/lookswelike3.jpg"><img src="images/preferredpics source/lookswelike3.jpg" alt="you look so cool where did you get that" /></a></li>
</ul>
it should disappear.
HTH
Bookmarks