// this is the best way I can think of to 'level up' the facilities page...

$(document).ready(function(){

	if($('#secondarypagesections').length){
		var toppadding=0;

		toppadding=$('#content h1.title:first').innerHeight();
		toppadding+=$('#content .container:first').innerHeight();

		if(toppadding>0){
			$('#secondarypagesections').css('padding-top',toppadding)
		}
	}

});
