$(function() {
    $('#rota-big').cycle({
        fx: 'fade',
        timeout: 4000,
        speed: 2000,
        pause: 0
    });

    $('.goto0').mouseover(function() {
        $('#rota-big').cycle(0);
        return false;
    });
    $('.goto1').mouseover(function() {
        $('#rota-big').cycle(1);
        return false;
    });
    $('.goto2').mouseover(function() {
        $('#rota-big').cycle(2);
        return false;
    });
    $('.goto3').mouseover(function() {
        $('#rota-big').cycle(3);
        return false;
    });
    $('.goto4').mouseover(function() {
        $('#rota-big').cycle(4);
        return false;
    });
    $('.goto5').mouseover(function() {
        $('#rota-big').cycle(5);
        return false;
    });
    $('.goto6').mouseover(function() {
        $('#rota-big').cycle(6);
        return false;
    });

});
