$(document).ready(function () {
	$(".c").hover(
		function () {
			setTimeout(function(){$("#brands").show();}, 300);
		},
		function () {}
	);
	$("#brands").hover(
		function () {
			$("#brands").show();
		},
		function () {
			$("#brands").hide();
		}
	);
	$(".mt").hover(
		function () {
			$("#brands").hide();
		},
		function () {}
	);
	$(".top-article span").click(
		function () {
			$(".top-article").toggleClass("opened");
		}
	);
	$(".auth").click(
		function () {
			$("#auth").toggle();
		}
	);
	$(".s-box span").click(
		function () {
			$(".s-box").animate({marginTop: "0px"}, 1000);
		}
	);
});