$(document).ready(function(){
	var claim =  $('.bem-claim');
	if( $('.bem-claim_err').length == 0 ) claim.css('top', 41 - claim.height() + 'px');
	else {
		claim.css('top', 0);
		claim.addClass('bem-claim_act');
		claim.find('em').text('Закрыть форму');
	}
	claim.find('option').each(function(){
		$(this).text($(this).text().substring(2))
	})
	claim.find('.close').click(function(){
		if( !claim.hasClass('bem-claim_act') ){
			claim.animate({'top': 0}, 600, function(){
				claim.addClass('bem-claim_act');
				claim.find('em').text('Закрыть форму');				
			})
		} else {
			claim.animate({'top': 41 - claim.height() + 'px'}, 600, function(){
				claim.removeClass('bem-claim_act');
				claim.find('em').html('<b></b>Заявка на аренду');				
			})
		}
	})
})
