function setupNewContent(rootEl) {
	// var parent = $(rootEl).parent();
	// 
	// if (jQuery().prefillForm) {
	// 	parent.find("input[type='button'][name='btn-prefill']").prefillForm();
	// }
	// 
	// if (jQuery().shareItem) {
	// 	parent.find(".share_item").shareItem();
	// }
	// 
	// parent.find('.definition_window_link').popupWindow({
	// 	height	: 350,
	// 	width	: 400,
	// 	top		: 50,
	// 	left	: 50
	// });
	// 
	// // parent.find('.map_module').bingMap();
	// parent.find('.map_module').googleMap3();
	// 
	// // parent.find('.pbcc_stadium_location_map').bingMap({
	// parent.find('.pbcc_stadium_location_map').googleMap3({
	// 	centerOnFirstMarker: true,
	// 	width: '100%',
	// 	height: '300px',
	// 	zoom: 14
	// });
	// 
	// // parent.find('.phpc_event_location_map').bingMap({
	// parent.find('.phpc_event_location_map').googleMap3({
	// 	centerOnFirstMarker: true,
	// 	width: '100%',
	// 	height: '300px',
	// 	zoom: 14
	// });
	// 
	// // parent.find('.phpc_nearby_event_location_map').bingMap({
	// parent.find('.phpc_nearby_event_location_map').googleMap3({
	// 	centerOnFirstSearch: true,
	// 	width: '550px',
	// 	height: '350px',
	// 	zoom: 6,
	// 	searches: [
	// 		{
	// 			address : 'harrisburg, pa',
	// 			radius : 1000
	// 		}
	// 	]
	// });
}

$(document).ready(function() {
	setupNewContent('body');
});


