// JavaScript Document
$(document).ready(function() { 
$('#usernav ul').superfish({ 
delay:       500,
animation:   {opacity:'show',height:'show', width:'show' },
autoArrows:  false,                         
dropShadows: false                          
}); 
}); 

$(document).ready(function(){
$("div.members_home div.image").hover(function() {
$(this).children(".name").animate({opacity: "show"}, "slow");
}, function() {
$(this).children(".name").animate({opacity: "hide"}, "fast");
});
});
