$(document).ready(function(){
	$(".smallGall .hide").toggle(function(){
		$(this).text("показать");
		$(".smallGall .content").slideUp('',function(){
			$(".smallGall .line")
			.animate({
				marginBottom:"10px"
			});
		});
	},function(){
		$(this).text("скрыть");
		$(".smallGall .content").slideDown();
		$(".smallGall .line")
		.animate({
			marginBottom:"0px"
		});
	});
	$(".imageSlide").jCarouselLite({
       // btnNext: ".next",
       // btnPrev: ".prev",
       auto:1000,
       speed:1000,
        visible:8,
        scroll:1
    });
});