jQuery.fn.extend({
	focusFirstInput: function(q) {
		var inputs = jQuery(q || 'input:text', this);
		if (inputs.length > 0) {
			inputs.get(0).focus();
		}
	}
});

jQuery(function($j) {
	$j('#login-form').focusFirstInput();
});
