// flicker.js
// by Chris Adkins
// Problem : IE displays a flickering effect when internet option settings are set to Every time I visit the webpage.
// Solution: Use this program along with stopFlicker.js to fix the IE Flicker effect
// Add this javascript within your <head> tags

try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
