On the onload event hang up function which reduces the large image on the page.
If you hover your mouse cursor over the picture should become of original size. If you do so
$(this).attr({ width: width_resized, onmouseover: '$(this).attr("width", ' + width + ');', onmouseout: '$(this).attr("width", ' + width_resized + ');' });
in Fox and Opera works fine, but in chrome is only set width.
$(this).attr("onmouseover", '$(this).attr("width", ' + width + ');');
So, too, does not work.
In what may be the problem?