Code:
<script type="text/javascript">
stepcarousel.setup({
galleryid: 'mygallery', //id of carousel DIV
beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
panelclass: 'panel', //class of panel DIVs each holding content
autostep: {enable:false, moveby:1, pause:9000},
panelbehavior: {speed:600, wraparound:false, persist:false},
defaultbuttons: {enable: true, moveby: 1, leftnav: ['images/prev.gif', -20, 143], rightnav: ['images/next.gif', -20, 143]},
statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
contenttype: ['inline'], //content setting ['inline'] or ['external', 'path_to_external_file']
oninit:function(){
navlinks=[], i=1
while (document.getElementById("panel"+i)){
navlinks.push(document.getElementById("panel"+i))
i++
}
},
onslide:function(){
for (var i=0; i<navlinks.length; i++){
navlinks[i].className=((i+1)==statusA)? "navselected" : "none"
}
}
})
</script>
<div id="mygallery" class="stepcarousel">
<div class="belt">
<div class="panel"><img src="images/family.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Merry Christmas</h1>
<p>Anne, Matt, Dory, Sam, Crawford, Gray and Miles would to wish you and yours a very Merry Christmas and Healthy and Happy New Year. In 2008 our family celebrated two graduations and very special birthday of a very special family member. Please click on the names below to see what we have been doing in ’08 and to see who had the special birthday.</p>
</div>
<div class="clr"><!-- --></div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Anne</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr"><!-- --></div>
</div>
<div class="panel">
<img src="images/matt.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Matt</h1>
<p>My big news is that after ten years of successful racing, Jimmy Gubelmann and I decided to retire the Windigo ’57 Chevrolet. The picture was taken at the Antique Automobile Museum in Hershey, Pa., where the ’57 will be on exhibit. Standing with me are John Marshall, Tim Friend, Mike Nunes and Jimmy. We will all miss our anual trip to Mexico, but most importantly, we all had fun and no one got hurt.</p>
<p>I am still heading up Travel Services Company in Berwyn,Pa.and can still be reached at <a href="mailto:matt@travelservicescompany.com">matt@travelservicescompany.com</a>.</p>
<h3>Merry Christmas and<br>
Happy New Year!!</h3>
</div>
<div class="clr"><!-- --></div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Dory</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr"><!-- --></div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Sam</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr"><!-- --></div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Crawford</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr">
<!-- -->
</div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Gray</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr">
<!-- -->
</div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Miles</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr">
<!-- -->
</div>
</div>
<div class="panel">
<img src="images/nophoto.jpg" width="505" height="312" />
<div class="bodytext">
<h1>Our Special Family Member</h1>
<p>Updates coming soon…</p>
</div>
<div class="clr">
<!-- -->
</div>
</div>
</div>
</div>
</div>
<div id="bottom">
<div class="footer">
<ul>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 2)" id="panel1">Anne</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 3)" id="panel2">Matt</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 4)" id="panel3">Dory</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 5)" id="panel4">Sam</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 6)" id="panel5">Crawford</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 7)" id="panel6">Gray</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 8)" id="panel7">Miles</a></li>
<li><a href="javascript:stepcarousel.stepTo('mygallery', 9)" class="special"><span>Very Special<br />
Family Member</span></a></li>
</ul>
Please let me know what could be wrong. Thanks
Bookmarks