function setHeight() {
	var content = document.getElementById('content');
	
	var w = content.offsetWidth;
	if(w < 1300) return;
	
	var contH = 161 + Math.ceil(w * (518/1300));
	
	if(content.offsetHeight - contH > 40) return;
	content.style.height = (contH + 40) + "px";
}