$(function(){
	$(".tab_ul > li").click (
      function () {
        var titl = $(this).attr("title");
        $(".tab_ul > li").removeClass('act');
        $(this).addClass('act');
        $(".tab_rezult").hide();
        $(".tab_rezult"+titl).show(800);
      }
    );

    $(".ul_cat > li a").click (
      function () {
        $(".container_img1").hide();
        $(".container_img2").hide();
        $(".container_img3").hide();
        var titr = $(this).parent().parent().attr("rel");
        $(".container_img"+titr).animate({ opacity: "show" }, 800);
        $(".ul_cat > li").removeClass('act');
        $(this).parent().parent().addClass('act');
        $(".home_block").hide();
        $(".home_block"+titr).animate({ opacity: "show" }, 800);
	   return false;
	  }
    );



    $(".pix_l").hover(
  function () {
    $(".ft2_img").show();
  },
  function () {
    $(".ft2_img").hide(); 
  }
);



    $(".service_ul2 > li > a ").hover(
		function () { 
			var tit = $(this).attr("rel");
			$(".container_img1").addClass("h1"+tit);
		},
		function () {
			$(".container_img1").removeClass("h11");
			$(".container_img1").removeClass("h12");
			$(".container_img1").removeClass("h13");
			$(".container_img1").removeClass("h14");
			$(".container_img1").removeClass("h15");
		}
	);
});

function opn_b() {$(".opened_block").toggle(800);}

function map_toggle() {$('.ct1').toggle(); $('.ct2').toggle(); $('.ct1_1').toggle(); $('.ct2_1').toggle(); $('.map_pesh').toggle(); $('.map_auto').toggle(); }
