// Turn on background image caching in IE
// --------------------------------------

if (document && document.execCommand) {
	try { document.execCommand("BackgroundImageCache",false,true); }
	catch (e) { }
}

