<script>
$(window).load(function() {
$(".galery_div").each(function()
{
$(this).jCarouselLite({
auto: 10000,
speed: 1000,
visible: 4,
width:200,
height:140,
easing:'easeOutExpo',
}).removeClass('hidden_d');
$('a.gallery').on().fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
//'transitionIn' : 'none',
//'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' :
function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Изображение ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';}
});
});
});
</script>