$(document).ready(function(){

    $("#lnkVotar").click(function(){
      if ( $("input[name|=rdoResp]:checked").length <= 0 )
         Alertar("DeportSalud","Por favor,seleccione una respuesta.",null);
      else{
          
        var idRespuesta = $("input[name|=rdoResp]:checked").val();
        var idPregunta  = $("#hdnIdPregunta").val();

        Leao.ui.setLoader("#contenidoEncuesta",null);

        $.post( "includes/guardarVoto.php",
               { idRta:idRespuesta ,accion:"votar",idPreg:idPregunta} ,
               function(html) {

                 if ( html != ""){
                   /* Alertar("DeportSalud", "Gracias por votar !",null);
                   $("input[name|=rdoResp]:checked").removeAttr("checked");
                   $("#lnkVotar").unbind();*/
                   $("#contenidoEncuesta").html(html);
                 }
                 Leao.ui.removeLoader("#contenidoEncuesta",null);
        });
      }      
    });

});
