	$(function() { //on DOM ready
		/*
		$(".imageScroller").simplyScroll({
			autoMode: 'loop', // folyamatos
			frameRate: 80, // FPS, sebesség
			speed: 1, // hány pixelenként mozog, ha nagyobbra állítod, kicsit ugrál, hülye beállítás szerintem :D
			pauseOnHover: true // megáll, ha fölé viszed az egeret
		});
		*/
		$(function() {
			var $scroller = $(".imageScroller").smoothDivScroll({
				autoScroll: 'always',
				autoScrollDirection: 'endlessloopleft',
				autoScrollStep: 1,
				autoScrollInterval: 6
			});
			
			
			$('.scrollWrapper').hover(function(){
				$(".imageScroller").smoothDivScroll('stopAutoScroll');
			}, function() {
				$(".imageScroller").smoothDivScroll('startAutoScroll');
			}).mousedown(function(){
				$(".imageScroller").smoothDivScroll('option', 'autoScrollStep', 4);
				$(".imageScroller").smoothDivScroll('startAutoScroll');
			}).mouseup(function() {
				$(".imageScroller").smoothDivScroll('option', 'autoScrollStep', 1);
				$(".imageScroller").smoothDivScroll('stopAutoScroll');
			}).rightMouseDown(function(){
				$(".imageScroller").smoothDivScroll('option', 'autoScrollStep', 4);
				$(".imageScroller").smoothDivScroll('option', 'autoScrollDirection', 'endlessloopright');
				$(".imageScroller").smoothDivScroll('startAutoScroll');
			}).rightMouseUp(function(){
				$(".imageScroller").smoothDivScroll('option', 'autoScrollDirection', 'endlessloopleft');
				$(".imageScroller").smoothDivScroll('stopAutoScroll');
			});
			
		});
		
	});


