One way to do it would be to create a dynamic function.
Something like this. (I'm basing this on my experience with other ECMAScript-based languages, you might want to double-check to make sure this works.)
for ( var i=0; i<thumbs.length; i++)
{
var num = i;
Core.addEventListener(thumbs[i], "click", new function(evt){
Slide.thumbClick(num);
});
}
Of course, some might consider this sloppy under some circumstances, but it works.
