$(function()
	{
		$('.date-pick')
			.datePicker(
				{
					createButton:true,
					renderCallback:function($td, thisDate, month, year)
					{
						if (thisDate.isSunday()) {
							$td.addClass('sunday');
							$td.addClass('disabled');
						}
					}
				}
			)
			.bind('click',
				function()
				{
					$(this).dpDisplay();
					this.blur();
					return false;
				}
			)
	});
