﻿/// <reference path="jquery-1.3.2-vsdoc.js" />
$(function() {
    $.datepicker.setDefaults({
        showOn: 'button',
        buttonImage: 'Images/calendar.gif',
        buttonImageOnly: true,
        dateFormat: 'mm/dd/yy',
        showOtherMonths: true,
        showStatus: true,
        constrainInput: true,
        defaultDate: null,
        buttonText: 'Select a date...',
        firstDay: 1,
        onSelect: function(input, inst) {
            // Prevents exception in IE when used in conjunction with ASP.Net validators.
            $(this).trigger('change', null);
        }
    });
});