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