Hey Nate...
First, this is a jQuery plugin. So the first thing you should do is download and link to jQuery. Next, download the jCarousel scripts and link to them (both CSS and JS).
The carousel is created using very simple markup. The example I linked to before uses:
Code:
<ul id="mycarousel" class="jcarousel jcarousel-skin-tango">
<li><img src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="75" height="75" alt="" /></li>
<li><img src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt="" /></li>
<li><img src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="75" height="75" alt="" /></li>
</ul>
It's a basic unordered list with an image within each list item. If you want, you can add a link to these images. The id of the <ul> can be anything, but the classes should be as above.
Lastly, you'll need to initiate the carousel. The bare minimum that you need to do this is:
Code:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
vertical: true
});
});
</script>
That should go within the <head> section of your code. If you changed the id, change it in the code as well (mycarousel refers to the id).
There are more configuration options available to you. You can read about them on the site.
Bookmarks