DatePicker issue

DatePicker issue


Hi,
I have a small form which has two date fields that need to be
selected. However, when I select the End Date, and try to navigate to
the previous month, or enter the select field of months, the entire
datepicker refocuses to the Begin Date input field. This is in IE6
consistently, and IE 7 depending on the wind (no not very technical,
thanks for noticing). An external test URL is http://teampoop.com/tests/
Please let me know if anyone else has had this issue and how they
fixed it.
Note:
I started with the simple command
$(".dateP").datepicker({dateFormat: 'dd-M-yy', mandatory: true});
and that works great but my first fix attempt was to separate the
command with
$(".dateP").each(function(){
    $(this).datepicker({dateFormat: 'dd-M-yy', mandatory: true});
});
that helped the issue in IE7, but still no love in IE6.
Thanks again for your assistance.