function show_random_apple()
{

    var objs = ['#pipa1', '#pipa2', '#pipa3', '#pipa4', '#pipa5', '#pipa6', '#pipa7', '#pipa8'];

    var rand_elem = objs[Math.floor(Math.random() * objs.length)];

    $(rand_elem).fadeIn('fast');

    setTimeout(function () {
        $(rand_elem).fadeOut('fast');
        show_random_apple();
    }, 2000);

}


var ani_step = 0;
function animate_club_ball()
{

    $('#klubi-intro').css({backgroundPosition: '0 -' + (ani_step * 30) + 'px'});

    ani_step++;

    if (ani_step < 12) {
        setTimeout(animate_club_ball, 100);
    }

}

function touch_canary()
{
    $('#r-canary').val('alive');
    return true;
}

