function boxAnimation( id, j, t ) {
	
	$('#' + id + ' .items ul li').hide();

	var licz = $('#' + id + ' .items ul li').length;
	
	if( j >= licz ) {
		j=0;
	}
	
	$('#' + id + ' .items ul li').each(function(i) {
		if( i == j ) {
			//$(this).show();
			$(this).fadeIn('fast');
			setTimeout( function() {
					boxAnimation( id, (j+1), t )
				}, t
			)
		}
	});
}
