Completely untested, and you might want to use fadeIn() and fadeOut(), or use better classes (both spans should have the same class, but different ID). Here is a jQuery sample to do this:
$(document).ready( function(){
$("li span")
.mouseOver( function(){ $(this).hide() )
.mouseOut( function(){ $(this).show() )
});
elcuco
2010-05-11 08:56:13