var timeoutID = false;
$(document).ready(function(){
    show_tarif(0, true);
});

function show_tarif(show_index, if_swith){
    $("#tarif div.block").css("display", "none");
    $("#index-menu li a").css("padding-top", "0px");
    $("#tarif div.block").eq(show_index).css("display", "block");
    $("#index-menu li").eq(show_index).children("a").css("padding-top", "25px");
    if(if_swith){
        var next_show_index = show_index + 1;
        if(!($("#tarif div.block").eq(next_show_index).size())){
            next_show_index = 0;
        }
        timeoutID = window.setTimeout("show_tarif(" + next_show_index + ", true)", 2000);
    }else{
        clearTimeout(timeoutID);
    }
}
