// JavaScript Document
	//$(function() {
//		pickerOptions = {
//			changeMonth: true,
//			changeYear: true,
//			showButtonPanel: true,
//			dateFormat: 'yy-mm-dd',
//			altFormat: 'DD, MM d, yy',
//			showOn: 'button',
//			buttonImage: '/images/calendar.gif',
//			buttonImageOnly: true,
//			};
//		$('#start_date').datepicker(pickerOptions);
//		$('#start_date').datepicker('option', 'altField', '#start_date2');
//		$('#end_date').datepicker(pickerOptions);
//		$('#end_date').datepicker('option', 'altField', '#end_date2');
//	});
	
	
	
	// JavaScript Document
	$(function() {
		pickerOptions = {
			changeMonth: true,
			changeYear: true,
			showButtonPanel: true,
			dateFormat: 'yy-mm-dd',
			altFormat: 'M d, yy',
			showOn: 'button',
			buttonImage: '/calendar/rmdc_locator/examples/images/calendar.gif',
			buttonImageOnly: true };
		$('#start_date').datepicker(pickerOptions);
		$('#start_date').datepicker('option', 'altField', '#start_date2');
		$('#end_date').datepicker(pickerOptions);
		$('#end_date').datepicker('option', 'altField', '#end_date2');
	});
	
	
