"Include-pages" + "Superfish-Plugin"?

"Include-pages" + "Superfish-Plugin"?

Hi,

I have downloaded the Superfish-Plugin (http://users.tpg.com.au/j_birch/plugins/superfish/). It does work so far.

But there is one thing, I want to have an answer:

Is it possible to add the following code with the "include-tag"?

  1. <ul id='cat-menu' class='sf-menu'>
  2.     <li class='cat_item<?php if(is_home()) echo ' current-cat'?>'><a href='<?php bloginfo('url'); ?>'>Startseite</a></ 
  3.         <?php wp_list_pages('title_li='); ?> 
  4. </ul>

Doing this by the following way, the subpages were not displayed anymore:

  1. <ul id='cat-menu' class='sf-menu'>
  2.     <li class='cat_item<?php if(is_home()) echo ' current-cat'; ?>'><a href='<?php bloginfo('url'); ?>'>Startseite</a></ 
  3.        <?php wp_list_pages('include=7,13,26,35&title_li=<h2>' . __('Pages') . '</h2>' ); ?>   
  4. </ul>
How can I solve the problem?