You're right, I should have noticed that. Is there a reason we can't use html on this forum? It sure would make posting images easier for those familiar with the code. As is stands I've just resized the pictures and uploaded to my server.
If anyone is using linux, you can batch resize pretty quickly with imagemagic. If all your pics are in a single folder, the command is:
for pic in *; do convert $pic -resize WIDTHxHEIGHT $pic; done . It will overwrite the file, so save them with a different name elsewhere if you wish to keep the originals.
A last tip, leave the WIDTH or HEIGHT empty and it will resize while keeping the aspect ratio intact.