

jQuery(document).ready(function(){
$("#iconbar li .base").hover(
function(){
$(this).animate({opacity: "show"}, "fast");
$(this).next().animate({opacity: "show"}, "fast");

//code for showing span goes here...
},
function(){
//nothing here because it will never be triggered.
}
);
$("#iconbar li .hover").hover(
function(){
//nothing here because it will never be triggered.
},
function(){
$(this).animate({opacity: "hide"}, "fast");
$(this).prev().animate({opacity: "show"}, "fast");

//code for hiding span goes here...
}
);
});
