function fixPhoto(ele) {
	setTimeout("doFix('" + ele.id + "')", 50);
}

function doFix(elID) {
	var ele = document.getElementById(elID);
	if (ele.height > ele.width) {
		ele.height = 115;
		ele.width = 90;
	} else {
		ele.height = 90;
		ele.width = 115;
	}
}
