Right now, I\'m using max-width to scale images to fit. However, they don\'t scale proportionally. Is there a way to cause this to happen? I\'m open to Javascript/jQuery.
Contrary to the accepted answer, you can do this without specifying the size in the HTML. It can all be done in CSS:
#content img { max-width: 100px; width: 100%; height: auto; }