﻿$(document).ready(function() {
    $("div.zon_SondageLeft").height($("div.zon_SondageRight").height());
    $("div.sondage").height($("div#sondageQuestion").height());

    $("form#frmSondage").ajaxForm({
        success: function(responseXML, statusXML) {
            $("div#sondageQuestion").height("auto");
            $("div#sondageQuestion").html(responseXML);
            $("div#sondageQuestion").fadeIn('slow');
            $("div.sondage").height($("div#sondageQuestion").height());
        }
    });

    $("input.SondageRadio").click(function() {
        $("div#sondageQuestion").fadeOut('slow');
        setTimeout("doSubmit()", 2000);
    });
});

// Declenche le submit apres l animation
function doSubmit() {
    $("form#frmSondage").submit();
}