jQuery(function($){
	$(document).ready(function(){
		$(".slider-link").click(function(){
			$other = $("#slider").find(".sblock:visible");
			$slider = $(this).next(); 
			if ($other.length > 0 && $slider.is(":hidden")) 
			{
				$other.slideUp("slow", function(){
					if ($slider.is(":hidden")){
						$slider.slideDown("slow");
					}
					else{
						$slider.slideUp("slow");
					}            
				});
			}
			else
			{
				if ($slider.is(":hidden")){
					$slider.slideDown("slow");
				}
				else{
					$slider.slideUp("slow");
				}
			}
			return false;
		}); 
		
		$("#login").click(function(){
			$slider = $("#at_bitrix");
			if ($slider.is(":hidden")){
				$slider.slideDown("slow");
				$("#login").css("font-weight","bold");
			}
			else{
				$slider.slideUp("slow");
				$("#login").css("font-weight","normal");
			}
			
			return false;
		}); 
		
    //$("#phone_mask").mask("(999) 999-9999");
	});
}); 
