$(document).ready(function () {
    $("#services span a").hover(function () {
        $('#services span a').not(this).stop().animate({
            opacity: 0
        }, 400);
    }, function () {
        $('#services span a').not(this).stop().animate({
            opacity: 1
        }, 400);
    });

    $('#testimonials').cycle({
        fx: 'scrollVert',
        speed: 500,
        timeout: 4000,
        next: '.arrows#test .next',
        prev: '.arrows#test .prev',
        pause: 1
    });
});
