function TAImainImageAdjust()
{
	var TAIimage = document.all ? document.all.tags("img") : document.getElementsByTagName("img");
	for (pic=0; pic<TAIimage.length; pic++)
		if (TAIimage[pic].className == "TAImainIMG")
		{
			var TAIwidth = Math.round((document.body.offsetWidth-480)/2);
			var TAIheight = Math.round(TAIimage[pic].height / TAIimage[pic].width * TAIwidth);
			if (TAIheight > 0 && TAIwidth > 0)
			{
				TAIimage[pic].className = "TAImain2IMG";
				TAIimage[pic].height = TAIheight;
				TAIimage[pic].width = TAIwidth;
			}
		}
}