
var resizeTimer = null;
$(document).ready(function(){
	fixHeight();
});
function fixHeight(){
	var newHeight = 545 + $('#center2').height() - 325;
	if(newHeight<545) {newHeight=545;}
	$('#building').height(newHeight);	
}
$(window).bind('resize', function() {
	if (resizeTimer) clearTimeout(resizeTimer);
	resizeTimer = setTimeout(fixHeight, 50);
}); 
