1$(function() {
2 var fixadent = $("#fixadent"), pos = fixadent.offset();
3 $(window).scroll(function() {
4 if ($(this).scrollTop() > (pos.top + 10) && fixadent.css('position') == 'static') {
5 fixadent.addClass('fixed');
6 } else {
7 if ($(this).scrollTop() <= pos.top && fixadent.hasClass('fixed')) {
8 fixadent.removeClass('fixed');
9 }
10 })
11});