$(document).ready(function(){
    var self = this;
	
	var promocurrent = 1;
	var promocount = $('.b-actions-slider li').length - 2;
	
	$('.b-actions-slider-r a').click(function(){
		if(promocurrent<promocount) {
			$('.b-actions-slider-l').show();
			$('.b-actions-slider ul').animate({
				marginLeft: '-=230px'
			  }, 800);
			  promocurrent++;
			  if(promocurrent == promocount) { 
					$('.b-actions-slider-r').hide();
				}
			  }
        return false;
    });
	
	$('.b-actions-slider-l a').click(function(){
		if(promocurrent>1) {
			$('.b-actions-slider-r').show();
			$('.b-actions-slider ul').animate({
				marginLeft: '+=230px'
			  }, 800);
			  promocurrent--;
			  if(promocurrent == 1) { 
					$('.b-actions-slider-l').hide();
				}
			  }
        return false;
    });
});
