$(document).ready( function()
{

  $('.condicionada').each( function()
  {
    var $pregunta = $(this);
    var opcion_id = /opcion_(.+)/.exec($pregunta.attr('class'))[1];
    var $opciones_pregunta_e_hijas = $('input', $pregunta);
    var $opciones_pregunta = $('input.opcion_' + opcion_id, $pregunta);

    $opciones_pregunta_e_hijas.attr('disabled', 'disabled');

    $('input').change( function()
    {
	  if($(this).attr("value") == opcion_id)
      {
        $opciones_pregunta.removeAttr('disabled');
      }
      else
      {
        $(this).siblings('input').each( function()
        {
          if(this.value == opcion_id)
          {
            $opciones_pregunta_e_hijas.attr('disabled', 'disabled');
          }
        });
      }
    });
  });
});
