@kimmanuel what I meant that it's too fast for the user to see it.
just use the Custom JS and try it out. It'll work, i already edit the menu items here: http://forums.afraidtoask.com/
Right click and view-source (or if you're in chrome click here) and you'll see the Custom JS script tag that reverses the menu items, hides the icons, shows the text instead and it adds a new item called "Home"
<script>
$(function() {
var ul = $("ul#main-nav");
var items = ul.find("li");
items.each(function(i, li){
li = $(li);
li.find("a>i").addClass("hide");
li.find("a span").removeClass("visible-xs-inline");
});
ul
.append(items.get().reverse())
.prepend('<li><a href="http://www.afraidtoask.com" title="" target="_top" data-original-title="Home"><i class="fa fa-fw fa-home hide"></i><span class=""> Home</span></a></li>');
});
</script>