Anyone good with Galleriffic?

Anyone good with Galleriffic?

Hello all,

I've got an issue with galleriffic...I want to be able to hide the "previous' link when I'm on the first page of thumbnails, and the 'next' link when I'm on the second page...i'll post my jscript below, as I have no idea how to do this.

Also I've noticed the fade transitions just don't work in IE, although the links themselves work and the image DOES change when clicking from thumbnail to thumbnail.

anyways here's the page I'm working on:  http://parkerhu.com/test_jhus/editorial.php

you'll see the 'previous' and 'next' links that navigate between thumbnail pages

and here's my jscript:

  1. jQuery(document).ready(function($) {
  2.     var gallery = $('#thumbs').galleriffic({
  3. imageContainerSel: '#leftcontent',
  4. captionContainerSel: '#caption',
  5. numThumbs: 10,
  6. enableTopPager: false,
  7. enableBottomPager: false,
  8. });
  9. gallery.find('a.prev').click(function(e) {
  10. gallery.previousPage();
  11. e.preventDefault();
  12. });
  13.  
  14. gallery.find('a.next').click(function(e) {
  15. gallery.nextPage();
  16. e.preventDefault();
  17. });
  18.        
  19. });
if anyone could help me out that'd be great :)

thanks,
Adam