/**
 * Selects the text of an input and sets the focus on it.
 */
var InputFocuser = new Class({
	initialize: function(input) {	
		if(input) {
			this.input = input;
			this.input.select();
			this.input.focus();
		}
	}
});
