/* Copyright (c) 2009 MEPA. All rights reserved. */
/* Set correct offset of fixed contact box */

  function getFixedCart()
  {
          var width = $(window).width();

          $(".basket").css("right", ((width-997)/2)+17);
  }
  
  $(document).ready(function(){
    setInterval("getFixedCart();", 100);
  });
