diff --git a/boxes.html b/boxes.html
index 44586a8..dfb5357 100644
--- a/boxes.html
+++ b/boxes.html
@@ -22,7 +22,9 @@
diff --git a/boxes.js b/boxes.js
index 6b2b3db..9990173 100644
--- a/boxes.js
+++ b/boxes.js
@@ -1 +1,56 @@
-console.log("hello world");
+$(document).ready(function(){
+ console.log('ready');
+
+ // $('#secretBox').css('backgroundColor', 'white');
+ // $('#secretBox').append('Secret Box
');
+ // $('#row1').children().addClass('boxType3');
+ //
+ // // $('#row4').children().last().css('display', 'none');
+ //
+ // $('.boxType1').css('backgroundColor', 'white');
+ //
+ // $('#row2 div:nth-child(2)').removeClass();
+ // $('#row2 div:nth-child(1)').removeClass();
+
+
+ // $(".box").not("#secretBox").css("width", "2px");
+
+
+
+ //
+ // $('#container').on('click', function(e){
+ // console.log(e.pageX)
+ // console.log(e.pageY)
+ // });
+ //
+ //
+ // $('.boxType1').wrap('');
+ //
+ // $('.boxType1').on('click', function(){
+ // alert('you can never leave')
+ // });
+ //
+ //
+
+
+ //
+ // $('.box').append('
');
+ //
+ //
+ // $('div .box img').on('click',function(e){
+ // $(e.target).remove();
+ // });
+
+
+ //
+ // $('#container').on('click', function(e){
+ // $('#container').css('backgroundColor', 'black')
+ // $(e.target).css('backgroundColor', 'white');
+ // });
+ //
+ //
+
+
+
+
+}); // ready