I'm trying to create some drop down menus for my invision board skin, and i'm after a bit of advice.

While its simple enough to pick a menu system that allows simple HTML links, I'm after something that will allow some php coding such as:

Code:
<if="$this->ipsclass->member['g_access_cp'] == 1 AND $this->ipsclass->vars['security_remove_acp_link'] == 0">
	<b><a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '110px')" onMouseout="delayhidemenu()">Admin CP</a></b> &middot;
</if>
and

Code:
<a href="{$this->ipsclass->base_url}act=Search&amp;CODE=getnew">{$this->ipsclass->lang['view_new_posts']}{$msg['total']}</a>
They also need to be skinnable in css to match the skin i'm doing (sorry, no shots yet, its still mostly in my head lol )

Can someone point me in a good direction to start looking?

Thanks.