// JS file to fix the menu image flicker problem on certain versions of IE
// For S3 Ontrack #9110, for more details see:
// http://evil.che.lu/2006/9/25/no-more-ie6-background-flicker

try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}