diff --git a/README.md b/README.md
index 567a460..687f78a 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,126 @@
-# [React](https://github.com/facebook/react)SWF
+# ReactSWF 0.6.0
Shockwave Flash Player component for [React](https://github.com/facebook/react)
-* Just 1KB gzipped
-* An object can be passed to `flashVars`
-* Solved IE8 memory leaks when using `flash.external.ExternalInterface.addCallback`
+Easy installation with `react-swf.min.js` or `npm install react-swf`.
-## Component
+* Browser bundle has optional CommonJS/AMD module loader support
+* Only ~1KB gzipped
+* An object can be passed to `flashVars` and is automatically encoded
+* Solves IE8 memory leaks when using `flash.external.ExternalInterface.addCallback`
-`ReactSWF.DOM.swf`
+## Examples
-`src` `width` `height` `play` `loop` `menu` `quality` `scale` `bgColor` `wmode` `base` `allowScriptAccess` `allowFullScreen` `fullScreenAspectRatio` `flashVars`
+#### React JSX example
-http://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html
+```
+
+```
-## Utility functions
+#### JavaScript example
-`ReactSWF.getFPVersion()`
+```
+ReactSWF({
+ src: 'example.swf',
+ width: 300,
+ height: 200,
+ wmode: 'transparent',
+ flashVars: {var1: 'A', var2: 1}
+})
+```
-`ReactSWF.isFPVersionSupported(version)`
+#### Flash Player detection
+
+```
+if (utils.isFPVersionSupported('10.0')) {
+ // success, go ahead and render the ReactSWF-component
+} else {
+ // not supported, use fallback or direct to Flash Player installer
+ console.log('Flash Player ' + utils.getFPVersion()) + ' is not supported');
+}
+```
+
+## Instructions
+
+#### NPM-package
+
+Simply install it with `npm install react-swf` and require it with `var ReactSWF = require('react-swf')`, utility functions are available through `require('react-swf/utils')`.
+
+#### Browser bundle (standalone)
+
+You are using `react-swf.min.js`
+
+Simply include it with `` and it is available through the global `ReactSWF`, utility functions are available through `ReactSWF.utils.*`.
+
+#### Browser bundle (CommonJS/AMD)
+
+Simply include it with `` if necessary and require it with `var ReactSWF = require('react-swf')`, utility functions are available through `require('react-swf').utils.*`.
+
+## Documentation
+
+#### ReactSWF attributes
+
+Detailed explanation of each attribute is found on [Flash OBJECT and EMBED tag attributes](http://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html).
+
+```
+require('react-swf')
+
+ src {string} [required]
+ width {number}
+ height {number}
+
+ wmode {enum}
+ flashVars {object|string}
+
+ base {string}
+ menu {boolean}
+ play {boolean}
+ loop {boolean}
+ quality {enum}
+ scale {enum}
+ align {enum}
+ salign {enum}
+ bgColor {color}
+ fullScreenAspectRatio {enum}
+
+ allowFullScreen {boolean}
+ allowScriptAccess {boolean}
+
+```
+
+##### wmode = transparent
+
+Is useful for enabling transparent Flash-content to blend seamlessly into a page, beware that there's a significant Flash-performance penalty associated with it so choose wisely.
+
+##### flashVars = {object}
+
+Allows sending a key-value object during *creation* that becomes available in ActionScript through `value = loaderInfo.parameters[key]`, roughly 64KB of serialized data is supported by Flash Player. Optionally, you can provide your own *encoded* string to be sent as-is to Flash Player.
+
+##### allowScriptAccess = false
+
+Prevents untrusted Flash-content from accessing sensitive information through browser script execution through `flash.external.ExternalInterface.call`.
+
+====
+
+#### Utility functions
+
+These functions are available through `ReactSWF.utils.*`, `require('react-swf').utils.*` or `require('react-swf/utils').*`, read the instructions at the top if you are unsure which is right for you.
+
+```
+require('react-swf/utils')
+
+ getFPVersion()
+ Detect installed Flash Player version. Result is cached.
+ {?string} return 'X.Y.Z'-version, or null.
+
+ isFPVersionSupported(version)
+ Detect if installed Flash Player version meets requirements.
+ {string} version 'X.Y.Z' or 'X.Y' or 'X'-version.
+ {boolean} return True if version is supported.
+
+```