diff --git a/README.md b/README.md
index 7ead218..9b77191 100644
--- a/README.md
+++ b/README.md
@@ -1,30 +1,30 @@
# Introduction
-This project is an experiment in visualizing code development using the amazing [d3][d3home] JavaScript library and the github REST [api][githubapi].
+This project is an experiment in visualizing code development using the amazing [D3][d3home] JavaScript library and the github REST [API][githubapi].
It was conceived at the 2012 Java Posse [Roundup][roundup], an amazing gathering of talented developers from around the world. The developers at the Roundup used [github][github] to collaborate on many different interesting projects - too many for any one person to fully participate in.
-[I][githubmtye] was consequently inspired to see if I could use the d3 JavaScript library to create a [visualization][visarticle] of all the work the Roundup developers had accompished (or at least all the work they'd committed to [github][githubjpr]). This is the result.
+[I][githubmtye] was consequently inspired to see if I could use the D3 JavaScript library to create a [visualization][visarticle] of all the work the Roundup developers had accomplished (or at least all the work they'd committed to [github][githubjpr]). This project is the result.
-[d3home]: http://mbostock.github.com/d3/ "d3 at github"
+More information is available at the d3github [project page][d3githubpage].
+
+[d3home]: http://d3js.org/ "D3 (Data-Driven Documents) website"
[githubapi]: http://developer.github.com/v3/
[roundup]: http://www.mindviewinc.com/Conferences/JavaPosseRoundup/
[github]: https://github.com/ "Duh!"
[githubmtye]: https://github.com/mtye
[visarticle]: http://en.wikipedia.org/wiki/Information_visualization
[githubjpr]: https://github.com/JavaPosseRoundup "Java Posse Roundup at github"
+[d3githubpage]: http://javaposseroundup.github.com/d3github/
## Installation and Use
-To use this project, simple clone this github repository and open the ```commits.html``` file in your web browser. The d3 library is available in the root directory, so there's no need to install it (or anything else).
+To use this project, simply clone this github repository and open the ```commits.html``` file in your web browser. (The file references CDN-hosted versions of the D3 and jQuery libraries, so you'll need an Internet connection.)
## Examples
-To see the d3github visualizer in use without cloning/downloading the project, look at this [example][example] on [bl.ocks.org][blocksorg].
-
-[example]: http://bl.ocks.org/2356163
-[blocksorg]: http://bl.ocks.org
+A live example of the d3github visualizer can be found on the d3github [project page][d3githubpage].
## Compatibility
-The d3 library uses the CSS Selectors API Level 1 and SVG, which may not be supported in older browsers. This code in this project has been verified to work with Google Chrome (verison 17.0), Firefox (11.0), and Safari (5.1), but not with Internet Explorer. The minimum versions that _should_ work are Chrome 4.0, Firefox 3.5, Safari 3.2, and Internet Explorer 9.0.
\ No newline at end of file
+The D3 library uses the CSS Selectors API Level 1 and SVG, which may not be supported in older browsers. This code in this project has been verified to work with Google Chrome (verison 17.0), Firefox (11.0), and Safari (5.1), but not with Internet Explorer. The minimum versions that _should_ work are Chrome 4.0, Firefox 3.5, Safari 3.2, and Internet Explorer 9.0.
\ No newline at end of file
diff --git a/commits.css b/commits.css
new file mode 100644
index 0000000..39d83d9
--- /dev/null
+++ b/commits.css
@@ -0,0 +1,33 @@
+body {
+ font: 14px sans-serif;
+ margin: 0;
+}
+.title {
+ font-size: 24px;
+ margin: 25px 0px 5px 200px;
+}
+.commit {
+ stroke: black;
+ stroke-width: 2px;
+}
+.timeline {
+ stroke: #444;
+ stroke-width: 1px;
+}
+.axis {
+ shape-rendering: crispEdges;
+}
+.x.axis .minor {
+ stroke-opacity: .5;
+}
+.y.axis path {
+ stroke: #fff;
+}
+.axis line, .axis path {
+ fill: none;
+ stroke: #000;
+}
+.help {
+ font-size: 16px;
+ margin: 0px 0px 5px 200px;
+}
diff --git a/commits.html b/commits.html
index c2c6206..2367ebc 100644
--- a/commits.html
+++ b/commits.html
@@ -1,47 +1,13 @@
-
-
-
+
+
+
Javaposse Roundup GitHub Repositories
-
+
Mouseover a tick mark on a timeline to see commit info