diff --git a/boxes.js b/boxes.js
index 6b2b3db..524fda7 100644
--- a/boxes.js
+++ b/boxes.js
@@ -1 +1,17 @@
-console.log("hello world");
+$(document).ready(function(){
+ alert("Hello, world!");
+ $('#secretBox').css({'backgroundColor':'white'}).append("
I'm a secret box!
");
+ $('#row1').children().removeClass().addClass('box boxType3');
+ $('#row4 > div:last').css({'display':'none'});
+ $('body').find('.boxType1').css({'backgroundColor':'white'});
+ $('#row2 > div:first-child, #row2 > div:nth-child(2)').removeClass();
+});
+
+
+
+
+
+
+$(window).load(function(){
+ console.log("Window loaded!")
+})