jQuery(function($) {
    $('ul.list li').ahover({moveSpeed: 400, hoverEffect: function() {
        $(this)
            .css({opacity: 0.5})
            .animate({opacity: 0.1}, 750)
            .animate({opacity: 0.99}, 750)
            .dequeue();
        $(this).queue(arguments.callee);
    }});
});

