<ul>
<?php
global $post;
$args = array( 'numberposts' => 5, 'offset'=> 1, 'post_parent' => 35 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :	setup_postdata($post); ?>
	<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>



<?php
  $children = wp_list_pages('sort_column=post_date&title_li=&child_of=35&echo=0');
  if ($children) { ?>
  <ul>
  <?php echo $children; ?>
  </ul>
  <?php } ?>
