I don’t think you have activated the plugin.
Also, you can wrap the menu in <ul> tags like that and you have placed a separate unordered list alongside it which also won’t work. You would normally use that second list as a fall-back for when the plugin isn’t activated. Try this instead:
[code:16p8vt6v]<div id="header">
<div id="headerleft">
<h1><a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?>[/url]</h1>
</div>
<div id="headerright">
<?php
if (function_exists(‘pixopoint_menu’)) {
pixopoint_menu();
}
else {
wp_list_pages(‘title_li=&depth=1’);
}
?>
</div>
</div>[/code:16p8vt6v]