$(function() {
	$('#index-page-slider-rom').kwicks({
		min: 38,
		isVertical: true,
		sticky: true,
		event: 'mouseenter',
		duration: 300
	});
	$('#index-page-slider-rus').kwicks({
		min: 38,
		isVertical: true,
		sticky: true,
		event: 'mouseenter',
		duration: 300
	});
	$('#index-page-slider-eng').kwicks({
		min: 38,
		isVertical: true,
		sticky: true,
		event: 'mouseenter',
		duration: 300
	});
	
	/*$('#index-promo-list').cycle({
		fx: 'scrollHorz',
		speed: 400,
		timeout: 0,
		next: '#next-promo',
		prev:'#prev-promo'
	});*/
	$('#index-promo-zone').infiniteCarousel({
	    transitionSpeed: 1000,
	    displayTime: 5500,
	    inView: 1,
	    advance: 1,
	    imagePath: '/i/Main/',
	    easeLeft: 'swing',//'linear',
	    easeRight: 'swing',//'linear',
	    padding: '5px',
	    displayThumbnails: false,
	    displayProgressBar: false,
	    autoHideCaptions: true,
	    prevNextInternal: false
	});
	
	$('#index-slider').jcarousel({
		scroll: 1,
		visible: 6
	});
	
	$('.jcarousel-prev, .jcarousel-next').bind('mouseover', function() {
		$(this).addClass('hover');
	}).bind('mouseout', function() {
		$(this).removeClass('hover');
	});
})