// JavaScript Document

$(function() {
$("li.user_login").hover(function() {
$(this).find("ul").stop(true, true).show('fast');
}, function() {
$(this).find("ul").stop(true, true).hide('fast');
});
}); 
