/*****************************************************************\
 * Very simple image resizing script for the shopping cart page. *
 *                                                               *
 * All it does is resizing images to a max-width                 *
 * of 160px and a max-height of 100px.                           *
 *                                                               *
 * -- Tim.                                                       *
 *                                                               *
\*****************************************************************/

function cartimgresize() {
	if (this.height > this.width) {
		if(this.height > 100) {
			this.width = Math.round((this.width*(100))/this.height);
			this.height = (100);
		}
	}
	else {
		if(this.width > 160) {
			this.height = Math.round((this.height*(160))/this.width);
			this.width = (160);
		}
	}
}
