
jQuery(document).ready(function($){
	$('.date-pick').datepicker({ 
		dateFormat: 'yy-mm-dd',
		changeMonth: true,
		changeYear: true,
		minDate: '2011-06-03',
		maxDate: '2011-11-15',
		showOn: 'both',
		buttonImage: 'images/calendar_icon.png',
		buttonImageOnly: true
		
	});
});

