$(document).ready(function(){
<!--去除链接虚线-->
    $("a").bind("focus",function(){
    if(this.blur){ //如果支持 this.blur
    	this.blur(); 
    }
    });

});
<!--用于下拉菜单-->
$(function(){
$("#Dropdown_menus li").hover (function(){
$(this).addClass("Dropdown_menus_current");
$(this).removeClass("Dropdown_menus_none");
$(this).find("ul").show()
},
function(){
$(this).addClass("Dropdown_menus_none");
$(this).removeClass("Dropdown_menus_current");
$(this).find("ul").hide()
});
});




