function resize(b,a,c){nwidth=b.width;nheight=b.height;if(nwidth>0&&nheight>0){if(nwidth/nheight>=a/c){if(nwidth>a){b.width=a;b.height=(nheight*a)/nwidth}}else{if(nheight>c){b.height=c;b.width=(nwidth*c)/nheight}}}else{if(b.width>b.height){if(b.width>a){b.width=a}}else{if(b.height>c){b.height=c}}}}window.addEvent("domready",function(){var a=235;var d=180;var c=57;var b=42;resize($("imgbox"),a,d);$("thumbs").getElements("img[small=Y]").each(function(e){resize(e,c,b)})});
