jQuery(document).ready(function($){var
showElementNumber=8,elementWidth=113
btnLeft=$('#au-left'),btnRight=$('#au-right'),list=$('#au-list'),current=0,max=parseInt($('#au-list .data').eq(0).text(),10)-showElementNumber;$('#au-list .data').remove();if(max>0){btnLeft.click(function(){if(0<current){--current;list.attr('scrollLeft',current*elementWidth);}});btnRight.click(function(){if(current<max){++current;list.attr('scrollLeft',current*elementWidth);}});}});
