$(function() {
	$('#event-start_date')
		.datepicker({ 
			showOn: 'button',
			buttonImageOnly: true, 
			buttonImage: '/aux/img/calendar/filter_start_date.jpg',
			altField: '#start_date_output',
			altFormat: 'mm/dd/yy'
		})
		.change(function() {
			$('#start_date_output').html($(this).val());
		});
		
	$('#event-end_date')
		.datepicker({ 
			showOn: 'button',
			buttonImageOnly: true, 
			buttonImage: '/aux/img/calendar/filter_end_date.jpg',
			altField: '#end_date_output',
			altFormat: 'mm/dd/yy'
		})
		.change(function() {
			$('#end_date_output').html($(this).val());
		});
})