function whImg(img){
	if(img.width/img.height>5/3){
		img.width = 150;
	}
	else{
		img.height = 90;
	}
}
