Hello Pauls, I believe I have fixed your problems, and have gotten your code to work on my computer. Here are the changes you need to make and why.
1. In index.html, you have the following line
//wade.init('memory.js');
you need to remove the 2 forward slashes as this indicates the line is a comment, and as such the line will not be executed
wade.init('memory.js');
2. In index.html, you also have the line <script src="wade_1.6.js"></script>
This is saying that you want to use the wade_1.6.js file, however this is not in the zip file you provided. Download wade 1.6 from
this website, and include the .js file in the same directory as your index and your program should then work.
Let me know how you get on :)