
  $(document).ready(function(){
    $('#slideshow').cycle({
       //fx:     'turnDown',
      fx:     'fade',
      speed:  'slow',
      timeout: 0,
      pager:  '#nav',
      pagerAnchorBuilder: function(idx, slide) {
          // return selector string for existing anchor
          return '#nav li:eq(' + idx + ') a';
      }
    });    
    
    /*******
    * Lightbox
    */
    
    try{
      $('#slideshow a.images').lightBox();
    }catch(e){
    alert('test');
      void(0);
    }
    
  });