I have the following code and for whatever reason, my end option doesn't seem to want to call the function it's supposed to. Any ideas?
$(document).ready(function() {
$('#weareepic').cycle({
fx: 'fade',
speed: 1000,
timeout: 1500,
nowrap: 1,
end: function() {
$('#bigshots').fadeout(1500);
}
});
});
Much appreciated folks!