$(function(){
    $(document).ready(function(){
      $(window).scroll(function(){
        //if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
        if  ($(window).scrollTop() > 100){
          $(".naviwrapper").css("position", "fixed");
          $(".naviwrapper").css("top", "0");
        }
       if  ($(window).scrollTop() <= 100){
          $(".naviwrapper").css("position", "absolute");
          $(".naviwrapper").css("top", 100);
        }
       }); 
    });
});
