diff --git a/boxes.js b/boxes.js
index 6b2b3db..7f5d4e4 100644
--- a/boxes.js
+++ b/boxes.js
@@ -1 +1,9 @@
-console.log("hello world");
+$(document).ready(function(){
+ $('#secretBox').css("background-color","white");
+ $('#secretBox').html("
Secret Box!
");
+ $('#row1').children().attr('class', 'box boxType3');
+ console.log($('#row4 div')[3].remove());
+ $('.boxType1').css('background-color','white');
+ $('#container div:not(#secretBox), #container div:not(.row)').css('width','2px');
+
+});