jQuery UI Datepicker with beforeshowday not working in 1.6rc6

jQuery UI Datepicker with beforeshowday not working in 1.6rc6


Hi, I am trying to use the Datepicker with beforeshowday with jQuery
1.3.1 and jQuery UI 1.6rc6. Here is my code:
$(document).ready(function(){
$("#dialog").datepicker(
{
beforeShowDay: dayfunct
});
});
function dayfunct(thedate)
{
//not doing anything here, but will check against a list of dates
and set css class
}
And this doesn't seem to work in IE or Firefox. Firefox gives me the
following error:
daySettings is undefined in jquery-ui.js on line 7243
If I remove the beforeShowDay option, the datepicker appears
correctly.
Am I doing something wrong here, or is this a bug?
Thanks
Alex Wilson