// adds page title to breadcrumb
function addObservers() { 
	$('breadcrumbtext').insert(document.title, 'bottom'); 
	// appends Inauguration of the President: to the beginning of every page title
	var beginTitle = "Inauguration of the President: "
	document.title = beginTitle + document.title;
}

Event.observe(window,'load',addObservers);