Object.prototype.getCSSProperty = function (prop) { return window.getComputedStyle( this, null )[prop] || this.currentStyle[prop]; };
document.links[0].getCSSProperty('marginLeft');