function fAlleAspect()
{
	var x=document.images;
	for (var i = 0; i < x.length; i++)
	{
		if (x[i].className == 'resizeAspect')
		{		    
		    fAspect(x[i]);			    
		}
	}
}
function fAspect(img)
{
	var width = img.width;
	var height = img.height;
	if (width > 0 && height > 0)
	{	
		var aspect = (width/height);
		if (width > height)
		{   
			img.height=Math.round(200/aspect);
		}	
	}
}
setTimeout("fAlleAspect()",300);
setTimeout("fAlleAspect()",600);
setTimeout("fAlleAspect()",2000);
