$(document).ready(function () {
	$('input.strtoupper').keyup(function() {
		if ($(this).val() == '') {
			return;
		}
		
		$(this).val(String($(this).val()).toUpperCase());
	});
	
	$('input.text').keyup(function() {
		if ($(this).val() != '') {
			$(this).next().focus();
		}
		
		var show_box = true;
		$('input.text').each(function () {
			if ($(this).val() == '') {
				show_box = false;
			}
		});
		
		if (show_box == true) {
			$('div#click').fadeIn();
		}
		else {
			$('div#click').fadeOut();
		}
	});
});
