;(function($) {
	jQuery.fn.extend({
		input: function() {
			return this.each(function() {
				$(this).focus(function(){
					$(this).parent().addClass("focus");
				}).blur(function(){
					$(this).parent().removeClass("focus");
				});
			});
		}
	});
})(jQuery);

