$(document).ready(function() { $('.view-content-home-page-banners').cycle({ fx: 'scrollHorz',//'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc... prev: '#prev', next: '#next', pause: 1, speed: 800, timeout: 7000, before: function() { var image = $(this).find('img'); var title = $(image).attr('title'); var alt = $(image).attr('alt'); $('h1#title').text(title).hide().fadeIn('1000'); $('p#alt').text(alt).hide().fadeIn('1000'); } }); $('div#controls img').fadeTo(1000,0.3); $('div#controls img').hover( function() { $(this).fadeTo(100,1.0); }, function() { $(this).fadeTo(100,0.3); } ); });