window.addEvent('domready', function() {
	/*
	Url: path to html file
	update: the element to include the html in	
			Note: this will replace the inner html in this element
			
	Copy paste this for each html file you need to load.
	if you need to replace multiple elements with a single html file, replace
	$('elementToUpdate') with $$(''), and include the correct selector(s)
	*/
	if($('sideBar1')){
		new Request.HTML({
			url:'/download/templates/html/aboutushtm',
			update: $('sideBar1'),
			evalScripts: true
		}).get();
	}else if($('sideBar2')){
		new Request.HTML({
			url:'/download/templates/html/helpushtml',
			update: $('sideBar2'),
			evalScripts: true
		}).get();
	}else if($('sideBar3')){
		new Request.HTML({
			url:'/download/templates/html/whatwedoht',
			update: $('sideBar3'),
			evalScripts: true
		}).get();
	}		
});
