### Eclipse Workspace Patch 1.0
#P oxid_ce_svn
Index: out/basic/src/oxid.js
===================================================================
--- out/basic/src/oxid.js	(revision 256)
+++ out/basic/src/oxid.js	(working copy)
@@ -183,6 +183,12 @@
                     maxHeight = document.documentElement.clientHeight;
                 }
 
+                if ((newWidth > maxWidth || newHeight > maxHeight)) {
+                    _el.style.overflow ='auto';
+                }
+                else {
+                    _el.style.overflow ='hidden';
+                }
                 if(newWidth > maxWidth){ newWidth = maxWidth;}
                 if(newHeight > maxHeight){ newHeight = maxHeight;}
 
@@ -326,9 +332,16 @@
     // switch image src
     image: function(id,src){
         var _el = document.getElementById(id);
-        if( _el ) { _el.src=src; }
-    },
-
+        if( _el ) { 
+            var preloader = new Image();
+            preloader.src=src; 
+            preloader.onload = function() {
+                _el.src=preloader.src; 
+                preloader.onload = null;
+                preloader = null;
+            };
+        }
+     },
     password: function(user_el,password_el,name) {
         var _u = document.getElementById(user_el);
         var _p = document.getElementById(password_el);
