//***************************************************************************************
//This function fixes IE6 flicker problem with CSS and bg images being repeatedly requested from the server.
function bgCacheFix()
{
    try {
      document.execCommand("BackgroundImageCache", false, true);
    } catch(err) {}
}
//***************************************************************************************

window.onload = function()
{
    bgCacheFix();
}

