$(document).ready(function()
{
	var thisyear = new Date(); 
	$('.filterdate').datepicker({
		changeMonth: true,
		changeYear: true,
		dateFormat: 'dd-mm-yy',
		minDate: new Date(2006, 1, 1), 
		maxDate: thisyear,
		yearRange: '2006:'+thisyear.getFullYear()
	});
});


