$(document).ready(function(){ $(".banner:first").show(); rotateBanner(); }); function rotateBanner() { $(".banner:visible").animate({ opacity: 1.0 },2000,function() { var test = $(".banner:visible"); $(test).hide(); if ($(test).is(':last-child')) { $('.banner').hide(); $('.banner:first').show(); } else { $(test).next().show(); } rotateBanner(); } ); }