jQuery(function($) {
    $('tr.first td').ahover({toggleEffect: 'width'});	
    $('ul.cards li').ahover({moveSpeed: 100, hoverEffect: function() {
        $(this)
            .css({opacity: 1})
            .animate({opacity: 0.25}, 450)
            .animate({opacity: 1}, 450)
            .dequeue();
        $(this).queue(arguments.callee);
    }});
});

