DatePicker is not working in IE

DatePicker is not working in IE


Hi All ,
Please tell me where is the problem. This is working fine in mozilla
but hooked up in IE.
my code is something like this:
<asp:TextBox ID="txtCalender" runat="server" Text="Click inside me to
see a datepicker" style="width:300px;"></asp:TextBox>
<script type="text/javascript" language="javascript">
$j=jQuery.noConflict();
$j(document).ready(function($)
{
$.datepicker.setDefaults(
{
dateFormat:'mm/dd/yy',
minDate: '7d',
maxDate: '1y',
showOn: "both",
buttonImage: "images/calendar.gif",
buttonImageOnly: true,
beforeShowDay: $.datepicker.noWeekends,
numberOfMonths: 2
});
$('#<%= txtCalender.ClientID %>').datepicker(
{
onSelect: function(date) { alert("The chosen dates are " +
date); },
}
);
});
</script>