$(document).ready(function(){
	$('.shelf_1 a.left_btn').click(function(){
		step=Math.round($('.shelf_1 .slide').width()); 
		$('.shelf_1  .floater').animate({'marginLeft':-step},500,function(){
			$('.shelf_1 .floater').append($('.shelf_1 .floater .slide')[0]);
			$('.shelf_1 .floater').css('margin-left','0px');
		});
	});					   	
	$('.shelf_1 a.right_btn').click(function(){
		step=Math.round($('.shelf_1  .slide').width()); 
		$('.shelf_1 .floater').css('margin-left',-step);
		arr = $('.shelf_1 .floater .slide').toArray();
		$('.shelf_1 .floater').prepend(arr[arr.length-1]);
		$('.shelf_1 .floater').animate({'marginLeft':0},500,function(){
		});
		
	});					   	
	
});
