Index: /FCKeditor/trunk/editor/fckeditor.html
===================================================================
--- /FCKeditor/trunk/editor/fckeditor.html	(revision 110)
+++ /FCKeditor/trunk/editor/fckeditor.html	(revision 111)
@@ -133,7 +133,4 @@
 if ( FCKBrowserInfo.IsIE )
 {
-	// Remove IE mouse flickering.
-	document.execCommand( 'BackgroundImageCache', false, true ) ;
-
 	// Create the default cleanup object used by the editor.
 	FCK.IECleanup = new FCKIECleanup( window ) ;
@@ -188,4 +185,9 @@
 window.onload = function()
 {
+	// Remove IE mouse flickering. We are doing that in the onload because a user
+	// have reported that it could not be executed during the page loading.
+	if ( FCKBrowserInfo.IsIE )
+		document.execCommand( 'BackgroundImageCache', false, true ) ;
+
 	InitializeAPI() ;
 
