// JavaScript Document
$(document).ready(function()
{
	var midHeight = $("#content").height() - 500;
	if(midHeight < 0) { midHeight = 0; }
	else { $(".pillar_mid").height(midHeight); }
});
