$(function(){
 				var year = new Date().getFullYear();
				
				$("#agenda_date_du").datepicker({
					changeYear: true,
					changeMonth: true,
					changeYear: true,
					// The year range is from the current year to 100 years before
					yearRange: (year - 1) + ":" + (year + 1)

				});
				
				$("#agenda_date_au").datepicker({
					changeYear: true,
					changeMonth: true,
					changeYear: true,
					// The year range is from the current year to 100 years before
					yearRange: (year - 1) + ":" + (year + 1)

				});
				
				
				
				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
});
			


