//淡入淡出动画效果
function animate(dom){
dom.fadeIn("slow")
setTimeout(function(){
dom.fadeOut("slow");
},2000);
}
//淡入淡出动画效果
function animate(dom){
dom.fadeIn("slow")
setTimeout(function(){
dom.fadeOut("slow");
},2000);
}