$(document).ready(function(){
				
				$('textarea').autoResize({
					// On resize:
					onResize : function() {
							$(this).css({opacity:0.8});
					},
					// After resize:
					animateCallback : function() {
							$(this).css({opacity:1});
					},
					// Quite slow animation:
					animateDuration : 300,
					// More extra space:
					extraSpace : 10
			    });
				$(".dateinput").datepicker({ 
				    dateFormat: "yy-mm-dd",
						showOn: 'button',			
				    buttonImage: "/newatmotor/images/calendar.gif",
				    yearRange: '1940:2020', 
				    buttonImageOnly: true 
				});
});