hover函数格式:
$("A").hover(function(){
//当鼠标移入的时候执行第一个函数
},function(){
//当鼠标移出的时候执行第二个函数
})
*hover函数必须要有两个函数作为参数!