$(function() {
	$("#reg_password").keyup(function() { setStraightPassword("reg_login", "reg_password"); }).change(function() { setStraightPassword("reg_login", "reg_password"); });
	
	$("#reg_name").alpha();

	$("#register_exchange").click(function() { if($(this).attr("checked") == true) { $(".exchangeBoxMore").slideDown("slow"); } else { $(".exchangeBoxMore").slideUp("slow"); } });
	$(".registerTBox .regInput").focus(function() { $(this).parent().parent().addClass("selected"); }).blur(function() { $(this).parent().parent().removeClass("selected"); });

	if($("#register_exchange").attr("checked") == true) {
		$(".exchangeBoxMore").slideDown("slow");
	};

});
function setAction(action) { $("#action").val(action); $("#register").submit(); }
