function init()
{
	adjust();
}

function adjust()
{

	var content = $('content');
	var content_height=content.getStyle('height').toInt();
	if(content_height < 500)
	{
		content_height+=250;
		content.setStyle('height',content_height+"px");
	}
}

