Datepicker IE bug

Datepicker IE bug

Hi, i have a problem with datepicker in IE8. I added a change event to the first datepicker and it has a default date. When i change the date for the second time the datepicker does not do anything and it seems like it opens the second datepicker because the options are the same as the second one.
You can test this bug on www.reservainn.com (try changing first datepicker several times)

Here is my code:
  1. $(function() {
  2.         var min_date=0;
  3.         var fecha_min = new Date();
  4.         var fecha_min_val = new Date();
  5.         var fecha_max = new Date();
  6.         $("#txt_fecha_inicio").datepicker({minDate: min_date, showOn: 'button', buttonImage: 'imagenes/cal-Icono.gif',
  7.                                         buttonImageOnly: true, dateFormat: 'D dd M yy', altField: '#fecha_inicio', altFormat: 'yy-mm-dd'},
  8.                                        $.datepicker.regional['es']);
  9.         $("#txt_fecha_fin").datepicker({minDate: min_date+1,showOn: 'button', buttonImage: 'imagenes/cal-Icono.gif',
  10.                                        buttonImageOnly: true, dateFormat: 'D dd M yy', altField: '#fecha_fin', altFormat: 'yy-mm-dd'},
  11.                                        $.datepicker.regional['es']);
  12.        
  13.        $("#txt_fecha_inicio").change(function (){
  14.                 var fecha_actual=new Date();
  15.                 fecha_min=$("#txt_fecha_inicio").datepicker('getDate');
  16.                 fecha_min_val=$("#txt_fecha_inicio").datepicker('getDate');
  17.                 fecha_max=$("#txt_fecha_inicio").datepicker('getDate');
  18.                 $("#txt_fecha_fin").datepicker( "setDate" , fecha_min_val.addDays(2));
  19.                 $("#txt_fecha_fin").datepicker('option',{minDate: fecha_min.addDays(1), maxDate: fecha_max.addDays(15)});
  20.                
  21.         });
  22. });
Hope you can help me, thanks