



/*
 * Select text inside an readonly-input field on user focus
 */

jQuery(function(){
	$(".form-text-readonly").focus(function(){
	    this.select();
	});
});
