Edit the following file:
includes/cssmenus2/MX_Menu2.inc.php
Change line 347
$this->DBItems[$fk][$order]['name'] = htmlentities(stripslashes(trim($rs->Fields($this->menuNameField))));
to
$this->DBItems[$fk][$order]['name'] = html_entity_decode(stripslashes(trim($rs->Fields($this->menuNameField))));
and line 362
$title = htmlentities(stripslashes(trim($rs->Fields($this->menuTitleField))));
to
$title = html_entity_decode(stripslashes(trim($rs->Fields($this->menuTitleField))));