Avoid 'too few slides' jquery.cycle error
[django-sponsors.git] / sponsors / static / sponsors / js / sponsors.js
1 (function($) {
2     $(function() {
3
4         $('.sponsor-logos').each(function() {
5             if ($(this).children().length > 1)
6                 $(this).cycle({timeout: 3000});
7         });
8
9     });
10 })(jQuery);
11