$(document).ready(function(){var last=$("#banners").find('div:last').index();$("#banners").find('div').eq(0).show();var i=0;function nextBanner(){i=i+1;$("#banners").find('div').eq(i-1).fadeOut('fast',function(){$("#banners").find('div').eq(i).fadeIn('fast');});if(i>last)i=0;};if(last>0)setInterval(function(){nextBanner();},5000);$(".ui-widget-header").css("background","white").css("border","0px");});