Here is my site. If you notice on the upper left there is a menu with a rollover effect. When you keep the cursor over the links the title pops up, which is the same as the link, which i think is redundant and unnecessary, so i'd like to make it not show any "title" value at all. Here is the code I use to display the menu links, but i don't know how to remove the title value. Can anyone help?
<div class="pages">
-
<li<?php if ( is_front_page() ) echo ' class="current_page_item"'; ?>>/"><span>Home</span>
<?php $pages = wp_list_pages('sort_column=menu_order&title_li=&echo=0');
$pages = preg_replace('%]+)>%U','<span>', $pages);
$pages = str_replace('','</span>', $pages);
echo $pages; ?>
<? unset($pages); ?>
</div>