$(document).ready(function(){
	$('.autoTab').keyup(function(e) {
		switch(e.keyCode) {
			// ignore the following keys
			case 9: // tab
			return false;
			case 16: // shift
			return false;
		}
		if ( $(this).attr('value').length == $(this).attr('maxlength') ) {
			$(this).next().focus();			
		}
	});
});