function init()
{
	init_images();
}
function init_images()
{
	var bbs_width = 130;
	var img,html;
	
	for(i=0;i<document.images.length;i++){
		img = document.images.item(i);
		if((img.id=="ubb_img")&&(img.width>=bbs_width)){
			html = "";
			img.height = (bbs_width*img.height)/img.width;
			img.insertAdjacentHTML("afterEnd",html);
		}
	}
}
