That's the exact one I'm using. I can show you what mine looks like:
PHP Code:
$sidebar = "
<div id='topbar'><span id='links'><ul id='sddm'>
".$welcome."
";
$sidebar .= "<li>".$msgctr."</li><li>
<a href='shop.php'><img src='images/cash.png'> {$GLOBALS['money']}</a></li><li><a href='account.php'
onmouseover='mopen(\"m1\")'
onmouseout='mclosetime()'>".$loggedinname." <img src='images/header_dropdown.png'></a>
<div id='m1'
onmouseover='mcancelclosetime()'
onmouseout='mclosetime()'><table class='sddm'><tr><td>
<a href='account.php?act=changeemail'>Change Email</a></td>
<td><a href='account.php?act=changepass'>Change PW</a></td></tr><tr><td>
<a href='account.php?act=friendlist'>Manage Friends</a></td>
<td><a href='account.php?act=changesettings'>Settings</a></td></tr><tr><td>
<a href='account.php?act=moreprofile'>More Profile Settings</a><td>
<a href='logout.php' title='Securely Logout'>Logout</a></td></tr></table>
</div>
</li>
<li><a href='shop.php'
onmouseover='mopen(\"m2\")'
onmouseout='mclosetime()'>Shops <img src='images/header_dropdown.png'></a>
<div id='m2'
onmouseover='mcancelclosetime()'
onmouseout='mclosetime()'><table class='sddm'><tr><td>
<a href='shop.php'>SilvAdopts Shop</a></td><td>
<a href='shop2.php'>Item Shop</a></td></tr></table>
</div>
</li>
<li><a href='myadopts.php'
onmouseover='mopen(\"m3\")'
onmouseout='mclosetime()'>My Den <img src='images/header_dropdown.png'></a>
<div id='m3'
onmouseover='mcancelclosetime()'
onmouseout='mclosetime()'><table class='sddm'><tr><td>
<a href='trade.php'>Trade</a></td><td>
<a href='search.php'>Search</a></td></tr><tr><td>
<a href='embed.php'>Embed All</a></td><td>
<a href='inventory.php'>Kit Inventory</a></td></tr><tr><td>
<a href='inventory2.php'>Adult Inventory</a></td><td>
<a href='collectables.php'>Event Badges</a></td></tr></table>
</div>
</li>
<li><a href='help.php'>Help</a></li>
";
That should at least give you an idea of how it works. I can't tell you how to use it on your site because they're different but you can at least see it as an example.