I see the next code while looking page sources:
var
count = 10
function Picture(oImage)
{
if (event.wheelDelta >= 120)
count++;
else if (event.wheelDelta <= -120)
count--
oImage.style.zoom = count +
'0%';
return false;
}
Please can you add semicolons after 10 and --
Thanks