/* Карусель Карлосон */

$(function() {				   

		initSlideshow();

});

function initSlideshow() {
	
	// класс блока
	var $g = $('.gallery');
	
	// а есть ли фотки?
	if (!$g.length) {
		return;	
	}
	
	// настройки прокрутки
	$g.css( { overflow: 'hidden', cursor:'pointer' }).serialScroll( { 	items: 'li',
										cycle: true, 
										interval: 3500, //интервал
										jump: true,
										duration: 1000, //скорость
										axis: 'x',
										constant: false,
										force: true,    //крутить сразу или пока не наведешь мышу
										prev: '#but_left',
										next: '#but_right' } )
									.hover( // че при наведении
										function(){
											$(this).trigger('stop');
										},
										function(){
											$(this).trigger('start');
										});
	
}

