$(document).ready(function(){
	var thisURL = window.location.href;
	
	// if this is the front page, get the news and calendar html and put it in the correct place
	if(thisURL.indexOf('pageId=About') > 0)
	{
		if($("#widget-news-list").length > 0)
		{
			var newsHTML = $("#front-page-news").html();
			$("#widget-news-list").html(newsHTML);
		}
		if($("#widget-calendar-list").length > 0)
		{
			var calendarHTML = $("#front-page-calendar").html();
			$("#widget-calendar-list").html(calendarHTML);
		}
	}
	
	// now remove the news and calendar divs from the page (they've already done their job)
	$("#front-page-news").html("");
	$("#front-page-calendar").html("");
});