
function loadEvents()
{
	// get the location on the page to load the news
	var handle=document.getElementById("home-content_col2");
	if( handle )
	{
		var content = '<span style="font-size: 1.2em; color: #868409;">Upcoming Events</span> <a href="events.php">View all</a><ul><li>Tree Board Meeting <a href="http://www.ci.dupont.wa.us/events.php?eid=1116">More >></a></li><li>Public Hearing - DuPont Shoreline Master Program Update <a href="http://www.ci.dupont.wa.us/events.php?eid=1114">More >></a></li><li>Planning Agency Meeting <a href="http://www.ci.dupont.wa.us/events.php?eid=1117">More >></a></li><li>City Council Meeting <a href="http://www.ci.dupont.wa.us/events.php?eid=1122">More >></a></li></ul>';
		
		handle.innerHTML = content;
	}
}

