	/*
	 * Fluid Typing 1.0 - jQuery plugin
	 *
	 * Copyright (c) 2007 Scott Gonzalez
	 *
	 * Dual licensed under the MIT and GPL licenses:
	 *   http://www.opensource.org/licenses/mit-license.php
	 *   http://www.gnu.org/licenses/gpl.html
	 */
	(function(b){function c(e,d){e.bind("keyup",function(f){if((this.value.length==this.maxLength)&&(f.keyCode>46)){d.focus();}});}function a(e,d){e.bind("keydown",function(f){if((this.value.length==0)&&(f.keyCode==8)){d.focus().val(d.val());}});}b.fn.extend({fluidTyping:function(){for(var d=0;d<this.length;d++){if(d!=this.length-1){c(b(this[d]),b(this[d+1]));}if(d!=0){a(b(this[d]),b(this[d-1]));}}}});})(jQuery);
