Notes for the next webmaster: 1. I highly recomend you get Notepad++. It's like Notepad but designed for those writing code. You can get it here. It is free. http://notepad-plus.sourceforge.net/uk/site.htm 2. I've tried to write lots of comments in the code you can tell what it all does. 3. If you need with the html or css, try these websites: For learning html: http://www.w3schools.com/html/default.asp http://www.w3.org/TR/html4/ To validate your html: http://validator.w3.org/#validate-by-upload To learn css: http://www.w3schools.com/css/default.asp http://www.html.net/tutorials/css/ To validate your css: http://jigsaw.w3.org/css-validator/#validate_by_upload 4. Character Codes - There are some characters you can't just type in an html document, you need to use the following code: for ñ, use ñ for <, use < for >, use > for &, use & If a url has an & in it, you need to replace it with this. for ", use " for a nonbreaking space, use   for more codes, see http://www.w3.org/MarkUp/Guide/Advanced.html 5. This is the code for webpage tracking, paste it into every singe html file just before the tag. 6. Use ../ to move up a level in the directory tree. For example, the branch pages are in a folder called branch, so anything in those pages that needs to link to something in the level above must start with ../. For example, instead of saying default.html in the tab to link back to the homepage, use ../../defaut.html, since it is two levels up. 7. There are templates for various pages in the templates folder. When you save your new file, be sure to save it in the proper folder, not the templates folder. The directory setup mirrors the site layout, you can look at the site map to get a overall view of it. 8. When using a template, I reccomend doing a "select all" and copying the code into a new file first. That way you don't acidentally save over the template. Don't forget to update the templates as you add things to the menu in the read-a-likes and reviews.