diff --git a/README.md b/README.md
index 4f9c999..cd188e3 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-assignment_js_sprint
-====================
+assignment_jq_dom_sprint
+========================
-while(1){ go() };
+...that DOM, D-DOM DOM DOOOOM...
diff --git a/document.ready.js b/document.ready.js
new file mode 100644
index 0000000..39ce1a6
--- /dev/null
+++ b/document.ready.js
@@ -0,0 +1,35 @@
+$(document).ready(function(){
+
+//Set H1 text to "Something Cheeky"
+$('h1').text("Something Cheeky");
+
+//Insert an HTML element to our div element with the class info-box
+$('div.info-box').append("
one
two
three
");
+
+//Change the class of "sad" elements to "happy"
+$('.sad').addClass("happy");
+$('.happy').removeClass("sad");
+
+//Change the attribute of the pop up's href link to a different url
+$('#annoying-popup a').attr('href', 'http://www.cashcats.biz');
+
+//Change the position of the pop-up with CSS styling
+$('#annoying-popup').css({
+ 'right': '0px',
+ 'top': '30px'
+});
+
+//Set our $list variable as our list we want so we can refer to it's cells
+var $list = $('.suggested-topics ul').children();
+//check each cell's inner HTML and then change it if it is "..."
+for ( i = 0; i < $list.length; i++ ) {
+ if( $list[i].innerHTML == "..." ) {
+ $list[i].innerHTML = "sample text";
+ }}
+
+//Add in a textarea and remove the text input
+$('.input-form input[type="text"]').remove();
+$('.input-form').html("" + $('.input-form').html());
+
+
+});
diff --git a/index.html b/index.html
index 2aa3713..c28ffa3 100644
--- a/index.html
+++ b/index.html
@@ -1,75 +1,60 @@
+
-
-
-
-
-
-
-
-
- Javascript Sprint Test Suite
+
+
+
+
+
+
+
+
+
+ Traverse and Manipulate
+
+ Admirable objectives for a jQuery Padwan
+
+
-
- Largest Element:
-
-
- Pending...
-
+
+
+ Upcoming traversals:
+
+
-
- Reversed String:
-
-
- Pending...
+
+
+ Input your Story
+
+
+
-
-
- Loud Snake Case:
-
-
- Pending...
+
+
+ Suggested Topics
+
+
+
Funny functions
+
Terrible traversals
+
Cogent collisions
+
Super selections
+
Massive manipulations
+
Admirable alterations
+
...
+
Killer klicks
+
+
-
- Compare Arrays:
-
-
- Note: The rest of the test suite depends on getting this right!
-