$(function(){
	var page = 1;
    var i = 2; 
	$('span#buttom_right').click(function(){
		var $pictureShow = $('div#hotpic');
		var downwidth = $pictureShow.width();
		var len = $('div#hotpic_content').find('li').length;
		var page_number = Math.ceil(len/i);
		if( !$('div#hotpic_content').is(":animated") ){
		if( page == page_number){
			$('div#hotpic_content').animate({left:'0px'},"slow");
		page = 1;
		}else{
			$('div#hotpic_content').animate({left:'-='+downwidth},"slow");
			page++;
		}
			}		
		});
    $('span#buttom_left').click(function(){
		var $pictureShow = $('div#hotpic');
		var downwidth = $pictureShow.width();
		var len = $('div#hotpic_content').find('li').length;
		var page_number = Math.ceil(len/i);
		if( !$('div#hotpic_content').is(":animated") ){
		 if(page == 1){
	$('div#hotpic_content').animate({left: '-='+downwidth*(page_number-1)},"slow");
			page = page_number;
			}else{
			$('div#hotpic_content').animate({left:'+='+downwidth},"slow");	
			page--;	
				}
		}		
		});   
	});
