$(document).ready(function(){
	$("ul.mainNav > li:last-child").addClass("last");
	$("div.formBox tr.act").hover(
		function (){
			$(this).addClass("hover");		
		},
		function (){
			$(this).removeClass("hover");
	});
	$("div.formBox input").focus(
		function(){
			$("div.formBox tr").removeClass("hover");
			$(this).parent().parent().addClass("hover");
	});
	$("div.formBox textarea").focus(
		function(){
			$("div.formBox tr").removeClass("hover");
			$(this).parent().parent().addClass("hover");
	});
	$(".pr#form_text_41").keypress(function (){
		if ($(this).val().length == $(this).attr("maxlength")-1) {
			$(".code#form_text_42").focus();
		}
	});
	$(".code#form_text_42").keypress(function (){
		if ($(this).val().length == $(this).attr("maxlength")-1) {
			$(".phoneEnd#form_text_39").focus();
		}
	});
});