You can achieve this by using CSS ':after' selector and 'content' property.
#DeltaTopNavigation ul#zz10_RootAspMenu > li.static > a > span > span:after { content: "Home"; font-family: inherit; font-size: 14px; } #DeltaTopNavigation ul#zz10_RootAspMenu > li.static > a > span > span { font-size: 0; }

In the above image, you can see the highlighted text is "Lorem Ipsum Dolar" which we make it font-size: 0 and add content property "Home" to it's parent span tag. You may have to adjust the CSS 'ul#zz10_RootAspMenu' to your id (use Firebug/IE tools to select elements and view hierarchy).