It seems you have some blank spaces at the end of each line in your javascript code. Try checking for that.
In an unrelated issue I found another error in your CSS file. In your moduleStyleSheets.css file on line 1253 you have an extra ; on the end.
border-bottom: 1px solid #eee;; |
Should be:
border-bottom: 1px solid #eee; |