$(function(){
	var secondsBetweenPhotos = 15;

	$('#topAreaPhotoCell-1').cycle({
		delay: 0,
		timeout: (secondsBetweenPhotos * 1000)
	});
	$('#topAreaPhotoCell-2').cycle({
		delay: 5 * 1000,
		timeout: (secondsBetweenPhotos * 1000)
	});
	$('#topAreaPhotoCell-3').cycle({
		delay: 10 * 1000,
		timeout: (secondsBetweenPhotos * 1000)
	});
});
