jQuery(function($) {
    $('ul li.roll').ahover();
    $('ul li.roll').ahover({toggleEffect: 'both'});
    $('ul li.roll').ahover({moveSpeed: 130, hoverEffect: function() {
        $(this)
            .css({opacity: 0.99})
            .animate({opacity: 0.79}, 750)
            .animate({opacity: 0.99}, 750)
            .dequeue();
        $(this).queue(arguments.callee);
    }});
    
$('.pdf .RegularPDF').ahover();
$('.pdf .RegularPDF').ahover({toggleEffect: 'both'});
$('.pdf .RegularPDF').ahover({moveSpeed: 130, hoverEffect: function() {
    $(this)
        .css({opacity: 0.99})
        .animate({opacity: 0.79}, 750)
        .animate({opacity: 0.99}, 750)
        .dequeue();
    $(this).queue(arguments.callee);
}});
    
$('.navHor .navHorPB').ahover();
$('.navHor .navHorPB').ahover({toggleEffect: 'both'});
$('.navHor .navHorPB').ahover({moveSpeed: 130, hoverEffect: function() {
    $(this)
        .css({opacity: 0.99})
        .animate({opacity: 0.79}, 750)
        .animate({opacity: 0.99}, 750)
        .dequeue();
    $(this).queue(arguments.callee);
}});
    
});
