﻿jQuery(function($){
    $.datepicker.setDefaults({
		showWeek: true,
		showOtherMonths: true,
		selectOtherMonths: true,
		firstDay: 1,
		showAnim: 'fadeIn',
		dateFormat: 'yy-mm-dd',
		changeMonth: true,
		changeYear: true,
		onClose: function ()
		{
			// Validates the datefield
			$("#"+this.id).parents("form").validate().element( "#"+this.id );
		}
	});
});
