$(document).ready(function() {

  $('.gallery-new-thumbs li:first-child').addClass('active');
  $('.gallery-new-overlay').scrollTop(0);

  $('.gallery-new-next').click(function() {
	if (!$($('.gallery-new-thumbs').children()[1]).is('.active')) {
		$('.gallery-new-overlay').animate({scrollTop: $('.gallery-new-overlay').scrollTop()+83}, 300);
	}
	if ($($('.gallery-new-thumbs').children()[0]).is('.active')) {
		$('.gallery-new-overlay').animate({scrollTop: 0}, 300);
	}
  });
  $('.gallery-new-previous').click(function() {
	if (!$($('.gallery-new-thumbs').children()[$('.gallery-new-thumbs').children().length-2]).is('.active')) {
		$('.gallery-new-overlay').animate({scrollTop: $('.gallery-new-overlay').scrollTop()-83}, 300);
	};
	if ($($('.gallery-new-thumbs').children()[$('.gallery-new-thumbs').children().length-1]).is('.active')) {
		$('.gallery-new-overlay').animate({scrollTop: $('.gallery-new-thumbs').height()}, 300);
	}
  });
  $('ul.gallery-new-thumbs').galleria({
	  insert: '.gallery-item',
	  history: false,
	  onImage: function() {
		u = $('.gallery-new-thumbs li.active img').attr('alt');
		t = $('.gallery-new-thumbs li.active img').attr('title');
		$('.hidden-scroll a').addClass('lightbox');
		$('.hidden-scroll a[href='+u+']').removeClass('lightbox');
		$('img.replaced').wrap('<a class="lightbox" href="'+ u +'"></a>');
		$('img.replaced').attr('title', t).attr('alt', t);
		$('.lightbox').lightBox({txtImage: 'Фото', txtOf: 'из', fixedNavigation: true});
	  }
  });
});
