$(document).ready(function() {
  $('.slideShowWrapper').show();
  //$('.slideText h1 span, .slideText h2 span').dropShadow({opacity:1.0});

  $('.slideshow').cycle({
      fx:     'fade',
      timeout: 5000,
      pager:  '#nav',
      after:   function(idx, slide){
        $('#SlideShowLink').attr('href', $(slide).find('img').attr('dataurl'));
      },
      pagerAnchorBuilder: function(idx, slide){
        return '<li><a href="javascript:void(0)"><img src="'+$(slide).find('img').attr('datasrc')+'" width="50" height="50" /></a></li>';
      }
   });

  $('.slideShowNav li a img').hover(function(){
      $(this).addClass('thumbHover');
    },
    function(){
      $(this).removeClass('thumbHover');
    });
});

