You probably just need another panel. However, you have two versions of jQuery on the page and another script (crawler). These could be causing problems. But I doubt it. The way Step Carousel works is that when it gets to the end, if there aren't enough panels, it shows a blank one.
This situation arises because you have:
Code:
.stepcarousel{
position: relative; /*leave this value alone*/
border: 0px solid black;
overflow: scroll; /*leave this value alone*/
width: 628px; /*Width of Carousel Viewer itself*/
height: 100px; /*Height should enough to fit largest content's height*/
}
which is twice the width of each:
Code:
.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 0px; /*margin around each panel*/
width: 314px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}
and an odd number of panels.
Bookmarks