$(document).ready( function() {
	// check for pageTop in content and shift into area between header and content.
	x = $('#content').find('#pageTop').html();
	if( x ) { $('#pageTopArea').html( x ).css( 'display', 'block'); }

	// check for contactInfo in content and shift to footer.
	x = $('#content').find('#contact').html();
	if( x ) { $('#contactInfo').html( x ).css( 'display', 'block'); }

	// check for belowSubMenu in content and shift into area below submenu.
	x = $('#content').find('#belowSubMenu').html();
	if( x ) { $('#subMenuInfo').html( x ).css( 'display', 'block'); }
});
