$(document).ready(function(){
	jQuery(function($){$("#u_zip ").mask("99-999");});
	jQuery(function($){$("#zip ").mask("99-999");});
	jQuery(function($){$("#end_display ").mask("9999-99-99");});
	jQuery(function($){$("#born_date ").mask("9999-99-99");});
	
	$('.probe .field').mouseover( function(){
		$( this ).addClass('field_active');
	});

	$('.probe .field').mouseout( function(){
		$( this ).removeClass('field_active');
	});	

	$('textarea#desc_from_user:not(.processed)').TextAreaResizer();	

});