// This include needs the variable $show_nbr_of_editorials to be set to
// the number of editorials that should be listed.
reset($editorials);
$array_length = count ($editorials);
if ($show_nbr_of_editorials > $array_length) $show_nbr_of_editorials = $array_length; // avoids trouble
$current_editorial=current($editorials);
for ($i = 1; $i <= $show_nbr_of_editorials ; $i++) { ?>
$current_editorial=next($editorials); } ?>