+
+
+ - Title: 'CSS Development with CSS3'
+ - Author: 'Zachary Kingston'
+ - Link: 'http://shop.oreilly.com/product/0636920057970.do'
+ - Type: 'css'
+
+
+
+
+
+
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..e69de29
diff --git a/jsfausto.js b/jsfausto.js
new file mode 100644
index 0000000..91ce63f
--- /dev/null
+++ b/jsfausto.js
@@ -0,0 +1,32 @@
+var books = [{
+ title: 'CSS: The Definitive Guide',
+ author: 'Eric Meyer',
+ link: 'http://shop.oreilly.com/product/0636920012726.do',
+ type: 'css'
+}, {
+ title: 'CSS Development with CSS3',
+ author: 'Zachary Kingston',
+ link: 'http://shop.oreilly.com/product/0636920057970.do',
+ type: 'css'
+}, {
+ title: 'You Don\'t Know JS: Up & Going',
+ author: 'Kyle Simpson',
+ link: 'http://shop.oreilly.com/product/0636920039303.do',
+ type: 'js'
+}, {
+ title: 'Programming JavaScript Applications',
+ author: 'Eric Elliott',
+ link: 'http://shop.oreilly.com/product/0636920033141.do',
+ type: 'js'
+}, {
+ title: 'Modern JavaScript',
+ author: 'unknown',
+ link: 'http://www.oreilly.com/web-platform/free/modern-javascript.csp',
+ type: 'js'
+}];
+
+
+
+for (var i = 0; i < books.length; i++) {
+ document.write("
" + "
" + "- Title: " + books[i].title + "
" + "- Author: " + books[i].author + "
" + "- Link: " + books[i].link + "
" + "- Type: " + books[i].type + "
" + "
" + "
");
+}