jQuery(document).ready(function($){
 $('#alright a').toggle(function(){ 
	$(this).text("＞＞＞＞＞＞＞＞＞＞往右靠看左图");
	$('#mainbody').animate({width: "800px"}, 1000); 
	},function(){
	$(this).text("＞＞＞＞＞往中靠看内容＜＜＜＜＜"); 
	$('#mainbody').animate({width: "100%"}, 800);});
        $('#shang').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);});
});