$(document).ready(function () {
	$(".article .panel .close").click(function () {
		$(this).parents(".panel").hide("slow")
		return false;
	});
	$(".in").click(function () {
		$(".login div").css("display", "block");
	});
	$(".login .user").hover(
	function () {
		$(this).addClass("hover");
	}, function () {
		$(this).removeClass("hover");
	});
});
// Слайдер
$(function () {
	$(".banner-1 div").jCarouselLite({
		auto: 6000,
		speed: 500,
		btnNext: ".next",
		btnPrev: ".prev"
	});
});
