$(document).ready (function
(){
	$("ul.menu li").click(function () {

            if( !$(this).hasClass('opened'))
                $('ul.menu li').removeClass('opened');

                    $(this).toggleClass('opened');

	});

    	$("ul.mainmenu a.znak").click(function () {

        if( !$(this).parent().hasClass('opened'))
                $('ul.mainmenu li').removeClass('opened');
            $(this).parent().toggleClass('opened');

	});


    $(".switchers a").click(function() {
        $("div.content_switchers div").hide();
        $(".switchers a.active").removeClass("active");
        $("div.content_switchers div#"+$(this).attr("href")).show();
        $(this).addClass("active");
	$("div.content_switchers div:visible").children("div").show();
        return false;
    });

	//var margin = $(".seo_blocks").height();
	//$("footer").css("margin-top", margin+"px");
});


