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