$(function(){
	
	if ($('.b-logon_form').length > 0) {
		$('.b-logon_form').hide();
	};

	$('a[href=#b-logon_open]').click(function() {
		$('.b-logon_form').toggle('fast');
		$('.b-logon_form dd input[type=text]').focus();
		return false;
	});

	/* карта на главной */
	$('.b-map .b-point').hover(function(){
		$(this).addClass('b-point_active');
	},
	function(){
		$(this).removeClass('b-point_active');
    });
});

