$(document).ready( function() {
	// check for contactInfo in content and shift to footer.
	x = $('#content').find('#contact').html();
	if( x ) { $('#contactInfo').html( x ).css( 'display', 'block'); }
	
	x2 = $('#content').find('#contactFooter').html();
	if( x2 ) { $('#contactInfoFooter').html( x2 ).css( 'display', 'block'); }
});
