(function($) {
	$(document).ready(function() {			
		$('body').hover(function(){
			$('.arrowLeft,.arrowRight').fadeIn(500);
		},function(){
			$('.arrowLeft,.arrowRight').fadeOut(100);
		})
		/*calculate position arrow icon set center body*/
		var h=$(window).height();
		var t=$('.carouselItem .BlockText').height();
		$('.arrowLeft,.arrowRight').css('top',(h/2)-42-(84/2)); /*height windown / 2 and - height box_menu/2 (84 is height box_menu)*/
		 $('.carouselItem .BlockText').css('top',h-84-t);
	
		 
		$(window).resize(function() {
			var h=$(window).height();
		  $('.arrowLeft,.arrowRight').css('top',(h/2)-42-(84/2));
		$('.carouselItem .BlockText').css('top',h-84-t);
		});
$(".jCarouselLite").jCarouselLite({
				auto: 7000,
				speed: 1000,
				btnNext: ".arrowRight",
				btnPrev: ".arrowLeft"
			});


	$('#gallery a').not('.arrowLeft,.arrowRight').lightBox();
			$("#gallery").jCarouselLite({
				//auto: 3000,
				speed: 2500,
				btnNext: ".arrowRight",
				btnPrev: ".arrowLeft",	
				visible: 1,
	    		afterEnd: function () {
			
	$('#gallery a').not('.arrowLeft,.arrowRight').lightBox();}
			});
			
		/*menu active*/
		$('.box_menu .menu li ').click(function(){
			$('.box_menu li.active').removeClass('active');
			$(this).addClass('active')
		})	
	});
})(jQuery);

