
(function($) {
	$.fn.inputfocus = function(options) {
		var defaults = {classe: 'focus'};
		var opts = $.extend(defaults, options);
		return this.each(function() {
			var $this = $(this);
			$this.focus(function() {
				$(this).addClass(opts.classe);
			});
			$this.blur(function() {
				$(this).removeClass(opts.classe);
			});
		});
	};
})(jQuery);
