$(function() { 
	$(".scroller_left").scrollable({
	
	size: 1,
    clickable: true,
	items: ".scroller_wrap",
	item: ".main_left",
	loop: true,
	speed: 1000
	
	}).circular();
	
	$(".scroller_right").scrollable({
	
	size: 1,
    clickable: true,
	items: ".scroller_wrap",
	item: ".main_right",
	loop: true,
	speed: 1000
	
	}).circular();
	
	$(".scroller_right2").scrollable({
	
	size: 1,
    clickable: true,
	items: ".scroller_wrap",
	item: ".main_right2",
	loop: true,
	speed: 1000
	
	}).circular();
}); 
