Date.firstDayOfWeek = 0;
Date.format = 'yyyy-mm-dd';
$(function()
{

	var d=new Date();
	var thisDate=d.asString();
	d.addMonths(2);
	var limitDate=d.asString();

	$('#date1')
		.datePicker(
			{
				createButton:false,
				startDate:thisDate,
				endDate:limitDate
			}
		)
		.bind('focus',
			function()
			{
				$(this).dpDisplay();
			}
		)
		.bind('dateSelected',
			function(e, selectedDate, $td){
				$('#date2').dpSetDisplayedMonth(selectedDate.getMonth(),selectedDate.getFullYear());
			}
		)
		.bind('dpClosed',
			function(){
				$("#date2").focus();
			}
		)
	$('#date2')
		.datePicker(
			{
				createButton:false,
				startDate:thisDate,
				endDate:limitDate
			}
		)
		.bind('focus',
			function()
			{
				$(this).dpDisplay();
			}
		)
});

