$(document).ready(function(){
	 //文章标题右移效果
	 $("h2 a").mouseover(function(){
	 	 $(this).animate({right:"-20px"},"slow");
	 })
	 $("h2 a").mouseout(function(){
	 	 $(this).animate({right:""},"slow");
	 })
});

