заменил
$("body").html(function(){
res="<table>";
for(i=0; i<containerHeight; i++)
{
res+="<tr>";
for(j=0; j<containerWidth; j++)
{
res+="<td";
if(container[i][j]==1)
res+=" class='videmii'";
res+="> </td>";
}
res+="</tr>";
}
res+="</table>";
return res;
});
setInterval(function(){
for(m=0; m<containerHeight - 2; m++)
{
tr = $("table tr")[m];
for(n=2; n<containerWidth - 2; n++)
{
td = $(tr).children("td")[n];
if (container[m][n]==1)
$(td).addClass("videmii");
else
$(td).removeClass("videmii");
}
}
}, 50);
Загрузка проца пошла на 60%. Что-то у меня руки карявые