


$(function() {
    $("#folio-description #close").click(function () {
      $("#folio-description").fadeOut("slow");
    });

    $('#slideshow').cycle({
        fx:      'fade',
        speed:	  1000,
        timeout:  5000,
        prev:    'a.prev',
        next:    'a.next',
        pager:   '#nav-slides',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav-slides li:eq(' + (idx) + ') a';
        }
      });

   $('#folio-slideshow').cycle({
        fx:      'fade',
        speed:	  1000,
        timeout:  5000,
        prev:    'a.prev',
        next:    'a.next',
        pager:   '#nav-slides',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#nav-slides li:eq(' + (idx) + ') a';
        }
      });

   
});
