Problem with 1.6 version od datepicker in IE6

Problem with 1.6 version od datepicker in IE6


Hi guys,
I have problem with the new version of the datepicker on ie6.
Apparently if the date picker is initialized before the body has
finished loading it crashes.
so i have added a $(document).ready and it works fine :
here is the code on 1679 of ui.datepicker.js
/* Initialise the date picker. */
$(document).ready(function(){
    if (!$.datepicker.initialized) {
        $(document.body).append($.datepicker.dpDiv);
        $.datepicker.initialized = true;
    }
});
and it fixes the problem for me.
bye.