jQuery(document).ready(function(){
  
	$('.ajaxform').ajaxForm(function(data) {
		
 		$('#server_response').html(data);
 		$('html, body').animate({scrollTop:10}, 'slow');
    }); 
	
				
	$(this).ajaxStart($.blockUI).ajaxStop($.unblockUI);	
         
});
jQuery(function() { 
   
    $('.dates').datepicker({ changeYear: true,changeMonth: true,duration: 'fast',constrainInput: false });
});
