Uncaught SyntaxError: Неожиданный токен ILLEGAL [duplicate]

Possible Duplicate:
Unexpected token ILLEGAL in webkit

Я написал простой скрипт для эффекта наведения мыши здесьhttp://jsfiddle.net/paDmg/368/ для этого сайтаhttp://avuedesigns.com/new/ - Это работает на jsfiddle, но я получаю

Uncaught SyntaxError: Unexpected token ILLEGAL

в моем JavaScript, когда я положил его в прямом эфире. Он в строке 29 говорит мне, что это закрывающие метки}); & # x200B;

$('#hover-grid .indiv-cell').hover(function() {

//set variables to current cell attributes
var cellHeader = $(this).attr('data-hoverheader');
var cellText = $(this).attr('data-hovertext');
var replacementImg = $(this).find('a img').attr('data-replacementimg');
var oringinalImg = $(this).find('a img').attr('src');

//save original image to data variable
$(this).data('origImg', oringinalImg);

//add remove classes
$('#hover-grid .indiv-cell').removeClass('newClass');
$(this).addClass('newClass', 1000);
$(this).find('a img').hide().attr('src', replacementImg).fadeIn(300);
$('.master-cell h1').hide().text(cellHeader).fadeIn(300);
$('.master-cell p').hide().text(cellText).fadeIn(300);

//return false;
}, function() {
    $(this).find('a img').hide().attr('src', $(this).data('origImg')).fadeIn(10);
});​

Ответы на вопрос(1)

Ваш ответ на вопрос