function resizeContent ()
{
	var width = $$("middle").offsetWidth;

	$("content").style.width = parseInt(width - 300) + "px";
}

window.onresize = resizeContent;
