function iefix(postload) {

// requires JQuery 1.1.3
if($.browser.msie && $.browser.version < 7) {
  if(postload) {
    scrollwidth = document.documentElement.clientWidth - document.body.clientWidth;
    $("#anti-header").css("right",scrollwidth + "px").css("width","auto");
  } else {
    $("#anti-header").css("width", "100%");
    
    $(document).ready(
      function() {
        try {
          document.execCommand('BackgroundImageCache', false, true);
        } catch(e) {
        }
      }
    );
    
    $(window).resize(
      function() {
        scrollwidth = document.documentElement.clientWidth - document.body.clientWidth;
        $("#anti-header").css("right",scrollwidth + "px").css("width","auto");
        $(window).unbind('resize');
      }
    );
  }
} 

}