// JavaScript Document

function thumbs(){

for (num = 0; num < document.images.length; ++num){

	OrgW = document.images[num].width
	OrgH = document.images[num].height
	
	NewH = 223
	NewW = OrgW * (223 / OrgH)
	
	document.images[num].width = NewW
	document.images[num].height = NewH
}
}