I've defined method fadeIn for Object
Object.prototype.fadeIn = function(d, callback) { //some code here };
....
var b = documentGetElementById('b1'); // <div id="b1"></div>
b.fadeIn();
It works in FF, Opera, Chrome, but IE reports "Object doesn't support this property or method" when I try launch fadeIn. Why IE doesn't inherit my methods from Object and how to fix it?