$(document).ready(function(){ $('#slideshow').cycle({ fx: 'turnDown', speed: 'fast', timeout: 0, pager: '#nav', pagerAnchorBuilder: function(idx, slide) { return '#nav li:eq(' + idx + ') a'; } }); $('#thumbs').tinycarousel(); $('#thumbs img').hover(function(e) { $(this).animate({opacity:0.7}, 150); }, function(){ $(this).animate({opacity:1}, 150); }); $("a.foto").fancybox(); });