The zoo used to have something like this .js in the forum <head> for over sized images i think, to keep things tidy.
PHP Code:
<!-- Resize images-->
<scr11111pt type="text/javascript">
function resizeImages() {
if (document.images) {
var mw = 700;
var mh = 8000;
for (var ii = 0; ii < document.images.length; ii++) {
var i = document.images[ii];
var iw = i.width;
var ih = i.height;
if (ih > iw && ih > mh) {
i.style.height = mh + 'px';
} else if (iw > mw) {
i.style.width = mw + 'px';
}
}
}
}
if (window.addEventListener) {
window.addEventListener('load', resizeImages, false);
} else if (window.attachEvent) {
window.attachEvent('onload', resizeImages);
} else {
window.onload = resizeImages;
}
//-->
</scr1111pt>
<!--/ Resize images-->
Have replace the i with 11111 in the start and end script type= and script.