// JavaScript Document
var speeds = new Array(2500, 3000, 3500, 4000);
var i = 0;

$(document).ready(function() {
	$('.cycler').each(function() {
		if ($(this).children('a').length > 1 || $(this).children('img').length > 1) {
			$(this).cycle({timeout: speeds[i]});
			i++;
			if (i > speeds.length) {
				i = 0;
			}
		}
	});
});
