/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() { // Indica que el arbol DOM ya ha sido construido
      $("input:radio").click(function() { // Cuando se cambia la seleccion en el combo
          if ($("input[@name='shipKey']:checked").val() == '1') {
              $("input[@name='shipKey']:checked").attr('checked', 'checked');
          }
          if ($("input[@name='shipKey']:checked").val() == '2') {
              $("input[@name='shipKey']:checked").attr('checked', 'checked');
          }
          var my_current = $('#current_form_id').attr('value');
          $('#transport_id').attr('action',my_current);
          $('#transport_id').submit();
      });

      $("#btn_transport_id").click(function() { // Cuando se cambia la seleccion en el combo
          var my_next = $('#next_form_id').attr('value');
          $('#transport_id').attr('action',my_next);
          $('#transport_id').submit();
      });
      
});


