
/* to fix background image flickering in IE */
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
if (isIE) {
    try {
      document.execCommand('BackgroundImageCache', false, true);
    } catch(e) {}
}
