function moveFigurineDown(px,time){
     $("#figurina").animate({'top': '+='+px}, time, function(){
            setTimeout("moveFigurineUp("+px+","+time+")", 10000);
     });
}

function moveFigurineUp(px,time){
     $("#figurina").animate({'top': '-='+px}, time, function(){
            setTimeout("moveFigurineDown("+px+","+time+")", 10000);
     });
}

function figurinePriceRotateStart(min,max,act){
     setTimeout("figurinePriceRotate("+min+","+max+","+act+")",4000);
}

function figurinePriceRotate(min,max,act){
    document.getElementById('figP'+act).style.display = 'none';
    next = act + 1;
    if (next > max) next = 1;
    document.getElementById('figP'+next).style.display = '';
    setTimeout("figurinePriceRotate("+min+","+max+","+next+")",4000);
}
