You are calling your changeColor function instead of passing it as callback. Instead you should do :
box.click(changeColor.bind(this, "green"));
The bind method creates a new function with arguments already filled, it is almost equivalent to doing :
box.click(function () {
changeColor("green");
});