$(function(){
	if ($('div.listing').length > 0) {
		$('div.scroll>ul>li:first').addClass('first');
		$('div.scroll').scrollable({
			clickable:false,
			items:'div.scroll>ul',
			next:'span.control.r',
			prev:'span.control.l',
			size:1,
			easing:'linear'
		}).mousewheel();
	};
});