Hello,
I've tweaked wp-cumulus.php in order to display only static pages in the cloud as a fancy menu. In the widget setup page one has to choose "Categories".
Here are the changes:
// get categories
if( $options['mode'] != "tags" ){
ob_start();
//wp_list_categories('title_li=&show_count=1&hierarchical=0&style=none');
$mypages=wp_list_pages('echo=0&title_li=&depth=-1');
$pagearray=explode('<li',$mypages);
for ($i=1;$i<count($pagearray);$i++) {
$z=$pagearray[$i];
$pos=strpos($z,"<a");
$z=substr($z,$pos,strlen($z)-$pos);
$z=str_replace("", "(1)
", $z);
echo $z;
}
$cats = urlencode( ob_get_clean() );
}