FirefoxでもcurrentStyleを使う
HTMLElement.prototype.__defineGetter__('currentStyle', function()getComputedStyle(this,null) )
とすれば、
document.body.currentStyle.backgroundColor
みたいな感じで現在のスタイルが取得できるようになる。OperaとIEはもとからできる。
currentStyleはスタイルのセットには使えないので、セットしたいときはstyleを使う。
styleを使ってセットしたスタイルは、styleとcurrentStyleのどちらからでも取得できる。