$(document).ready(function(){
	initScroll();
});

function initScroll(){
	$('.scroll').each(function(){
		var left = $(this).children('div.sLeft');
		var right = $(this).children('div.sRight');
		$(this).children('ul').cycle({
			speed: 'fast',
			timeout: 0,
			next: right,
			prev: left
		});
		
	});
}
