function next_bt(){
	var l = parseInt($("#slide_box").css("left"));
	if(l < -360){
		$("#slide_box").animate({left: 0 + "px"} , "normal");
	}else{
		$("#slide_box").animate({left: l - 480 + "px"} , "normal");
	}
}
function back_bt(){
	var l = parseInt($("#slide_box").css("left"));
	if(l > -120){
		$("#slide_box").animate({left: -480 + "px"} , "normal");
	}else{
		$("#slide_box").animate({left: l + 480 + "px"} , "normal");
	}
}
