$(document).ready(function() {

    isCookie = getCookie('toSurvey');

    if(!voted()) {

        $("#valid_sondage").click(function() {
            var action = $("#responses_survey li input[name=response_sondage]:checked").attr('checked');

            if(action && action != 'undefined') {
                var numResponse = $("#responses_survey li input[name=response_sondage]:checked").val();
                getSondage(numResponse);
                $("#question_survey").remove();
            } else {
                return false;
            }
        });
    }
    else {
        $("#question_survey").remove();
        getSondage(0);
    }

    simpleTabs("#info_tabs", "info_tab_content");
    simpleTabs("#stages_tabs", "stages_tab_content");
    simpleTabs("#weather_tabs", "weather_tab_content");

});

