I know it's usually an encoding error, and in fact the Google Chrome developer debugger gives me the error:
Uncaught SyntaxError: Unexpected token ILLEGAL
But I can't see where this error is occurring. What am I doing wrong here?
Fiddle: http://jsfiddle.net/6fwbS/19/
//User defined variables
var adjacents = 3
//Script variables
var a = 0,
b, c;
var imgArr = [];
My site: http://digitalbrent.com/lab/
(I've checked the other questions with similar titles but I can't seem to find the problem in my code.)