$(document).ready(function(){
    $(".fcity").click(function(){
		$(this).parent().children("ul").slideToggle("slow");
    });
	
	$(".fname").click(function(){
		$(this).parent().children(".filial_overview").slideToggle("slow");
    });
	
	$("#query").click(function(){
			$(this).attr("value","");
	});
	
	$('#bank_review_message').keyup(function(){
		var max = parseInt($(this).attr('maxlength'));
			if($(this).val().length > max){
				$(this).val($(this).val().substr(0, $(this).attr('maxlength')));
       	}
		$("#lcount").text(max - $(this).val().length);
	});
	
	$('#new_bank_review').submit(function() {
		$('#bank_review_sbm_button').attr('value','Ждите...');
	});
	
	$('#user_profile_about').keyup(function(){
		var max = parseInt($(this).attr('maxlength'));
			if($(this).val().length > max){
				$(this).val($(this).val().substr(0, $(this).attr('maxlength')));
       	}
		$("#lcount").text(max - $(this).val().length);
	});
});
