var nt = !1;
$(window).bind("scroll",
function() {
var st = $(document).scrollTop();//往下滚的高度
nt = nt ? nt: $("#J_m_nav").offset().top;
// document.title=st;
var sel=$("#J_m_nav");
if (nt < st) {
sel.addClass("nav_fixed");
} else {
sel.removeClass("nav_fixed");
}
});