function fix_img_item(a){
	var i = 153;
	a.width = i;
	while (a.height>110)
	{
		i = i - 10;
		a.width = i;
	}
}
