The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
A light-weight presentation plugin to use in place of Keynote or Powerpoint. Use the right and left keys, the previous & next links, or the actual page links to navigate through the slides.

Sample Usage:

<div id="slides">
  <div class="slide">
    Slide 1
  </div>
  <div class="slide">
    Slide 2
  </div>
  <div class="slide">
    Slide 3
  </div>
</div>

$('#slides').presentation({
  slide: '.slide', //Reference to each individual slide
  pagerClass: 'nav-pager', //Class to put on the unordered list that contains links to each slide
  prevNextClass: 'nav-prev-next', //Class to put on the unordered list that contains the previous and next links
  prevText: 'Previous', //Text for the Previous link
  nextText: 'Next', //Text for the Next link
  transition: 'fade' //Possible values are 'fade', 'show/hide', 'slide'
});