/* Author: http://line25.com/wp-content/uploads/2010/slideshow/demo/demo.html */ $(document).ready(function() { $("#slideshow").css("overflow", "hidden"); $("ul#slides").cycle({ fx: 'fade', pause: 1, prev: '#prev', next: '#next' }); $("#slideshow").hover(function() { $("ul#nav").fadeIn(); }, function() { $("ul#nav").fadeOut(); }); }); //fancybox $("a[rel=image_gallery]").fancybox({ 'transitionIn' : 'none', 'transitionOut' : 'none', 'titlePosition' : 'over', 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) { return 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? '   ' + title : '') + ''; } });